biography-of-lijie/Assets/GameMain/Scripts/Event/Dialog/DialogNextLineRequestEventA...

22 lines
505 B
C#

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