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