server-master/srcs/WingsAPI.Game/Triggers/BattleTriggers.cs
2026-02-10 18:21:30 +01:00

10 lines
No EOL
322 B
C#

namespace WingsEmu.Game.Triggers;
public static class BattleTriggers
{
public const string OnDeath = "OnDeath";
public const string OnHit = "OnHit";
public const string OnHalfHp = "OnHalfHp";
public const string OnQuarterHp = "OnQuarterHp";
public const string OnThreeFourthsHp = "OnThreeFourthsHp";
}