server-master/srcs/WingsAPI.Game/Characters/Events/BattleEntityHealEvent.cs
2026-02-10 18:21:30 +01:00

11 lines
No EOL
299 B
C#

using WingsEmu.Game.Entities;
namespace WingsEmu.Game.Characters.Events;
public class BattleEntityHealEvent : IBattleEntityEvent
{
public int HpHeal { get; init; }
public int MpHeal { get; init; }
public bool HealMates { get; init; }
public IBattleEntity Entity { get; init; }
}