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

9 lines
162 B
C#

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