7 lines
95 B
C#
7 lines
95 B
C#
namespace Zennysoft.Game.Abstractions;
|
|
|
|
public interface IKillable
|
|
{
|
|
public void Die();
|
|
}
|