16 lines
399 B
C#
16 lines
399 B
C#
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;
|
|
}
|
|
}
|
|
} |