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