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