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