OldBlueWater/BlueWater/Assets/Blobcreate/Shared/Code/Health/IHealth.cs

7 lines
100 B
C#
Raw Normal View History

2023-08-10 08:23:04 +00:00
namespace Blobcreate.Universal
{
public interface IHealth
{
void TakeDamage(int damage);
}
}