Files

7 lines
104 B
C#

namespace Zennysoft.Game.Abstractions;
public interface IKillable
{
public abstract void Die();
}