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