forked from zxl/LaboratoryProtection
17 lines
393 B
C#
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;
|
|
}
|
|
}
|
|
} |