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

8 lines
214 B
C#
Raw Normal View History

2023-12-10 12:28:20 +08:00
namespace ZGameFramework
{
public class TestEventArgs1 : GameEventArgs
{
public static readonly int EventId = typeof(TestEventArgs1).GetHashCode();
public override int Id => EventId;
}
}