9 lines
137 B
C#
9 lines
137 B
C#
namespace Zennysoft.Game.Abstractions;
|
|
|
|
public interface IHealthComponent
|
|
{
|
|
int MaximumHP { get; }
|
|
|
|
int CurrentHP { get; set; }
|
|
}
|