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

10 lines
217 B
C#
Raw Normal View History

2024-07-19 10:55:39 +08:00
using ZGame;
namespace ZC
{
public class TestEventArgs : GameEventArgs
{
public static readonly int EventId = typeof(TestEventArgs).GetHashCode();
public override int Id => EventId;
}
}