namespace ZGameFramework { public class QuestionSureEventArgs : GameEventArgs { public static readonly int EventId = typeof(QuestionSureEventArgs).GetHashCode(); public override int Id => EventId; public int index; public QuestionSureEventArgs(int index) { this.index = index; } } }