12 lines
200 B
C#
12 lines
200 B
C#
using System;
|
|
|
|
namespace FlappyBird.Core
|
|
{
|
|
public interface IGameStartNotifier
|
|
{
|
|
bool HasStarted { get; }
|
|
event Action OnGameStarted;
|
|
void NotifyGameStarted();
|
|
}
|
|
}
|