15 lines
346 B
C#
15 lines
346 B
C#
|
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;
|
||
|
}
|
||
|
}
|
||
|
}
|