7 lines
144 B
C#
7 lines
144 B
C#
namespace Movementtests.interfaces;
|
|
|
|
public interface IHealthable
|
|
{
|
|
float CurrentHealth { get; set; }
|
|
void ReduceHealth(float amount);
|
|
} |