input refactored

This commit is contained in:
Mausham
2025-12-15 21:51:34 +05:45
parent a166fe2861
commit 05287c4b73
10 changed files with 41 additions and 25 deletions

View File

@@ -33,6 +33,11 @@ public class GameScreenController: IGameScreenController
gameScreenView.Show();
}
public void HideGameScreen()
{
gameScreenView.Hide();
}
public void OnPauseButtonClicked()
{
IaudioController.PlayBtnPressedSound();
@@ -45,4 +50,5 @@ public class GameScreenController: IGameScreenController
public interface IGameScreenController {
void ShowGameScreen();
void HideGameScreen();
}