22 lines
502 B
C#
22 lines
502 B
C#
using GameFramework;
|
|
using GameFramework.Event;
|
|
|
|
namespace GeometryTD.CustomEvent
|
|
{
|
|
public class CombatFinishReturnEventArgs : GameEventArgs
|
|
{
|
|
public static int EventId => typeof(CombatFinishReturnEventArgs).GetHashCode();
|
|
|
|
public override int Id => EventId;
|
|
|
|
public static CombatFinishReturnEventArgs Create()
|
|
{
|
|
return ReferencePool.Acquire<CombatFinishReturnEventArgs>();
|
|
}
|
|
|
|
public override void Clear()
|
|
{
|
|
}
|
|
}
|
|
}
|