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; } } }