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