WaiXie_QuestionSystem/Assets/Script/Event/EventArgs/QuestionSureEventArgs.cs

17 lines
447 B
C#
Raw Normal View History

2023-12-10 12:28:20 +08:00
namespace ZGameFramework
{
public class QuestionSureEventArgs : GameEventArgs
{
public static readonly int EventId = typeof(QuestionSureEventArgs).GetHashCode();
public override int Id => EventId;
2023-12-26 11:21:59 +08:00
public bool isTrue { get; set; }
2023-12-10 12:28:20 +08:00
public int index;
2023-12-26 11:21:59 +08:00
public QuestionSureEventArgs(int index, bool isTrue)
2023-12-10 12:28:20 +08:00
{
this.index = index;
2023-12-26 11:21:59 +08:00
this.isTrue = isTrue;
2023-12-10 12:28:20 +08:00
}
}
}