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