geometry-tower-defense/Assets/GameMain/Scripts/Event/Shop/ShopExitRequestedEventArgs.cs

22 lines
505 B
C#

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