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