namespace MegaKoop.Game.Combat { public interface IDamageable { Team Team { get; } bool IsAlive { get; } void ApplyDamage(DamagePayload payload); } }