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