1
0
Fork 0
LaboratoryProtection/Assets/UnityTest/ZXL/Scripts/Event/Args/ChoiceQuestionEventArgs.cs

17 lines
393 B
C#

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;
}
}
}