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