canto/Assets/Scripts/Entity/IDamageable.cs
2025-08-14 19:11:32 -04:00

9 lines
164 B
C#

using KitsuneCafe.Sys;
namespace KitsuneCafe.Entity
{
public interface IDamageable : IGameObject
{
void ReceiveDamage(IDamaging source, int amount);
}
}