9 lines
164 B
C#
9 lines
164 B
C#
using KitsuneCafe.Sys;
|
|
|
|
namespace KitsuneCafe.Entities
|
|
{
|
|
public interface IDamaging : IGameObject
|
|
{
|
|
void ApplyDamage(int amount, IDamageable target);
|
|
}
|
|
}
|