// Нажатие на кнопку стрельба
    public void ClickFireButton()
    {
        if (DataGame.isPause)
        {
            return;
        }

        shootingPlayer.CreateTile();    // Создаём пулю игрока
    }