예제 #1
0
    private void PlayHitSequence(int row, int column, bool showAnimation)
    {
        if (showAnimation)
        {
            screenController.AddExplosion(row, column);
        }

        Audio.PlaySoundEffect(Resources.GameSound("Hit"));

        screenController.DrawAnimationSequence();
    }