c5f8f13f09c9f29eea16d22c837b4fc4ab9287d9
[Mograsim.git] /
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 }