HAARFTE/Assets/DemoGame/GameScript/Hotfix/EventArgs/TestEventArgs.cs

9 lines
204 B
C#
Raw Normal View History


2024-10-24 16:16:57 +08:00
namespace ZC
{
public class TestEventArgs : GameEventArgs
{
public static readonly int EventId = typeof(TestEventArgs).GetHashCode();
public override int Id => EventId;
}
}