Beispiel #1
0
        protected void ShootBomb()
        {
            Bomb bomb = BombsManager.GetBomb(this);

            if (bomb != null)
            {
                timeToNextBomb = RANGE_BOMB;
                bomb.Shoot(Position);
            }
        }