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