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

8 lines
214 B
C#

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