9 lines
113 B
C#
9 lines
113 B
C#
namespace Creatures
|
|
{
|
|
public interface IVitalReaction
|
|
{
|
|
void Hit();
|
|
void Heal();
|
|
}
|
|
}
|