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