15 lines
359 B
C#
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;
|
|
}
|
|
}
|
|
} |