server-master/srcs/WingsAPI.Game/Battle/Event/EntityDamageEvent.cs
2026-02-10 18:21:30 +01:00

13 lines
No EOL
353 B
C#

using PhoenixLib.Events;
using WingsEmu.Game.Entities;
namespace WingsEmu.Game.Battle;
public class EntityDamageEvent : IAsyncEvent
{
public IBattleEntity Damaged { get; set; }
public IBattleEntity Damager { get; set; }
public int Damage { get; set; }
public bool CanKill { get; set; }
public SkillInfo SkillInfo { get; set; }
}