Beispiel #1
0
 public IdleState(Gohan auto)
     : base(auto)
 {
     // define the standing still frame
     //stillFrame = new Point(14, 0);
 }
Beispiel #2
0
 public JumpingState(Gohan auto)
     : base(auto)
 {
 }
Beispiel #3
0
 protected AbstractState(Gohan auto)
 {
     this.auto = auto;
 }
Beispiel #4
0
 public RunningState(Gohan auto)
     : base(auto)
 {
 }