geometry-tower-defense-base/src-ref/Event/Combat/CombatDebugFailEventArgs.cs

22 lines
490 B
C#

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<CombatDebugFailEventArgs>();
}
public override void Clear()
{
}
}
}