using GameFramework; using GameFramework.Event; namespace SepCore.Event { public class SelectRoleConfirmEventArgs : GameEventArgs { public static readonly int EventId = typeof(SelectRoleConfirmEventArgs).GetHashCode(); public override int Id => EventId; public static SelectRoleConfirmEventArgs Create() { return ReferencePool.Acquire(); } public override void Clear() { } } }