Ejemplo n.º 1
0
 public BatWalkNorth(Bat bat)
 {
     this.bat          = bat;
     bat.initialY      = bat.yPos;
     my_frame_index    = 0;
     delay_frame_index = 0;
 }
Ejemplo n.º 2
0
 public BatWalkNE(Bat bat)
 {
     this.bat          = bat;
     bat.initialX      = bat.xPos;
     my_frame_index    = 0;
     delay_frame_index = 0;
 }
Ejemplo n.º 3
0
        public BatDeath(Bat bat)
        {
            this.bat = bat;

            bat.myGame.collisionManager.removeNPC(bat);
        }