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