geometry-tower-defense/Assets/GameMain/Scripts/Event/RepoForm/RepoSellCancelRequestedEven...

22 lines
529 B
C#

using GameFramework;
using GameFramework.Event;
namespace GeometryTD.CustomEvent
{
public sealed class RepoSellCancelRequestedEventArgs : GameEventArgs
{
public static int EventId => typeof(RepoSellCancelRequestedEventArgs).GetHashCode();
public override int Id => EventId;
public static RepoSellCancelRequestedEventArgs Create()
{
return ReferencePool.Acquire<RepoSellCancelRequestedEventArgs>();
}
public override void Clear()
{
}
}
}