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