using UnityTest.ZXL; namespace Mono.Event { public class ChoiceQuestionEventArgs : GameEventArgs { public static readonly int EventId = typeof(ChoiceQuestionEventArgs).GetHashCode(); public override int Id => EventId; public bool isFirst; public ChoiceQuestionEventArgs(bool isFirst) { this.isFirst = isFirst; } } }