MPROMEditor now calls its columns "Opcode" and "muPC"
[Mograsim.git] / standard / HighLevelStateHandlerContext.java
1 package net.mograsim.logic.model.snippets.highlevelstatehandlers.standard;
2
3 import net.mograsim.logic.model.model.components.GUIComponent;
4
5 public class HighLevelStateHandlerContext
6 {
7         public final GUIComponent component;
8         public final String stateID;
9
10         public HighLevelStateHandlerContext(GUIComponent component, String stateID)
11         {
12                 this.component = component;
13                 this.stateID = stateID;
14         }
15 }