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