Files
jelito/Assets/jelycho/Code/Actors/IHasHealth.cs
2025-10-24 13:54:27 +02:00

8 lines
173 B
C#

namespace RebootReality.jelycho.Actors {
public interface IHasHealth {
ulong Health { get; }
ulong MaxHealth { get; }
bool IsAlive();
}
}