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