Initial Commit
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
|
||||
namespace FlappyBird.Core
|
||||
{
|
||||
public interface IGameManager
|
||||
{
|
||||
GameState CurrentState { get; }
|
||||
event Action<GameState> OnGameStateChanged;
|
||||
void StartGame();
|
||||
void GameOver();
|
||||
void ReturnToMenu();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user