Files
2026-03-16 14:38:46 +02:00

12 lines
200 B
C#

using System;
namespace FlappyBird.Core
{
public interface IGameStartNotifier
{
bool HasStarted { get; }
event Action OnGameStarted;
void NotifyGameStarted();
}
}