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

11 lines
No EOL
281 B
C#

using PhoenixLib.Events;
using WingsEmu.Packets.Enums;
namespace WingsEmu.Game.Act4.Event;
public class Act4MukrajuDeathEvent : IAsyncEvent
{
public Act4MukrajuDeathEvent(FactionType factionType) => FactionType = factionType;
public FactionType FactionType { get; }
}