15 lines
404 B
C#
15 lines
404 B
C#
namespace ZGameFramework
|
|
{
|
|
public class Right_QuestionItemStopInputEventArgs : GameEventArgs
|
|
{
|
|
public static readonly int EventId = typeof(Right_QuestionItemStopInputEventArgs).GetHashCode();
|
|
public override int Id => EventId;
|
|
|
|
public int index;
|
|
|
|
public Right_QuestionItemStopInputEventArgs(int index)
|
|
{
|
|
this.index = index;
|
|
}
|
|
}
|
|
} |