Beispiel #1
0
        public void shoot(Hero hero, Shoot.SHOOTINGDIRECTION dir)
        {
            Shoot shoot = new Shoot(hero.X, hero.Y);

            shoot.changeDirection(dir);
            bullets.Add(shoot);
        }
Beispiel #2
0
 public void ChangeBullet(Shoot.SHOOTINGDIRECTION direction)
 {
     //  scene.ChangeDir(direction);
     //shoot.changeDirection(direction);
 }