using System; namespace FlappyBird.Core { public interface IDeathManager { bool IsDead { get; } event Action OnDied; void Die(); } }