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