Ejemplo n.º 1
0
 public JumpingState(GlitchPlayer player)
     : base(player)
 {
 }
Ejemplo n.º 2
0
 public ClimbingState(GlitchPlayer player)
     : base(player)
 {
 }
Ejemplo n.º 3
0
 public WalkingState(GlitchPlayer player)
     : base(player)
 {
     // define the standing still frame
     stillFrame = new Point(14, 0);
 }
Ejemplo n.º 4
0
 public SleepingState(GlitchPlayer player)
     : base(player)
 {
 }
Ejemplo n.º 5
0
 public ClimbingState(GlitchPlayer player)
     : base(player)
 {
 }
Ejemplo n.º 6
0
 protected AbstractState(GlitchPlayer player)
 {
     this.player = player;
 }
Ejemplo n.º 7
0
 public SleepingState(GlitchPlayer player)
     : base(player)
 {
 }
Ejemplo n.º 8
0
 public JumpingState(GlitchPlayer player)
     : base(player)
 {
 }
Ejemplo n.º 9
0
 public WalkingState(GlitchPlayer player)
     : base(player)
 {
     // define the standing still frame
     stillFrame = new Point(14, 0);
 }
Ejemplo n.º 10
0
 protected AbstractState(GlitchPlayer player)
 {
     this.player = player;
 }
Ejemplo n.º 11
0
 public WalkingState(GlitchPlayer player)
     : base(player)
 {
     stillFrame = new Point(14, 0);
 }
Ejemplo n.º 12
0
 public ClimbingState(GlitchPlayer player)
     : base(player)
 {
     startFrame = new Point(0, 1);
 }
Ejemplo n.º 13
0
 public ClimbingState(GlitchPlayer player)
     : base(player)
 {
     stillFrame = new Point(4, 1);
 }