Beispiel #1
0
 public void setType(Constants.stateType type)
 {
     this.type = type;
 }
Beispiel #2
0
 public void setType(Constants.stateType type)
 {
     this.type = type;
 }
Beispiel #3
0
 public State(Constants.stateType _type, String _motion)
 {
     this.type = _type;
     transitions = new Dictionary<String, Transition>();
     this.motion = _motion;
 }
Beispiel #4
0
 public State(Constants.stateType _type, String _motion)
 {
     this.type   = _type;
     transitions = new Dictionary <String, Transition>();
     this.motion = _motion;
 }