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

15 lines
359 B
C#

namespace ZGameFramework
{
public class QuestionSureEventArgs : GameEventArgs
{
public static readonly int EventId = typeof(QuestionSureEventArgs).GetHashCode();
public override int Id => EventId;
public int index;
public QuestionSureEventArgs(int index)
{
this.index = index;
}
}
}