public FlippedGoombaState(Goomba goomba)
        {
            this.goomba = goomba;

            this.goomba.Physics.yPosition    += 2;
            this.goomba.Physics.yAcceleration = Config.GetGravity();
        }
Beispiel #2
0
 public RightMovingGoombaState(Goomba goomba)
 {
     this.goomba = goomba;
 }
Beispiel #3
0
 public StompedGoombaState(Goomba goomba)
 {
     this.goomba = goomba;
 }
 public LeftMovingGoombaState(Goomba goomba)
 {
     this.goomba = goomba;
 }