17 lines
447 B
C#
17 lines
447 B
C#
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;
|
|
}
|
|
}
|
|
} |