10 lines
186 B
C#
10 lines
186 B
C#
namespace MegaKoop.Game.Combat
|
|
{
|
|
public interface IDamageable
|
|
{
|
|
Team Team { get; }
|
|
bool IsAlive { get; }
|
|
void ApplyDamage(DamagePayload payload);
|
|
}
|
|
}
|