12 lines
170 B
C#
12 lines
170 B
C#
using System;
|
|
|
|
namespace FlappyBird.Core
|
|
{
|
|
public interface IDeathManager
|
|
{
|
|
bool IsDead { get; }
|
|
event Action OnDied;
|
|
void Die();
|
|
}
|
|
}
|