Framwork/Assets/Scripts/Runtime/UI/EventArgs/BookPlayAnimatorFinishEvent...

16 lines
399 B
C#
Raw Normal View History

2025-07-10 23:16:27 +08:00
using ZGame;
namespace Runtime
{
public class BookPlayAnimatorFinishEventArgs : GameEventArgs
{
public static readonly int EventId = typeof(BookPlayAnimatorFinishEventArgs).GetHashCode();
public override int Id => EventId;
public int number;
public BookPlayAnimatorFinishEventArgs(int number)
{
this.number = number;
}
}
}