|
namespace Mono.Event
|
|
{
|
|
public class TransitionEventArgs : GameEventArgs
|
|
{
|
|
public static readonly int EventId = typeof(TransitionEventArgs).GetHashCode();
|
|
public override int Id => EventId;
|
|
|
|
public int index;
|
|
|
|
public TransitionEventArgs(int index)
|
|
{
|
|
this.index = index;
|
|
}
|
|
}
|
|
} |