forked from zxl/Frame
1
0
Fork 0
Frame/Assets/Scripts/Event/Args/TestEventArgs.cs

12 lines
257 B
C#
Raw Normal View History

2024-04-02 18:17:57 +08:00
namespace Game
{
public class TestEventArgs : GameEventArgs
{
public static readonly int EventId = typeof(TestEventArgs).GetHashCode();
public override int Id => EventId;
public TestEventArgs()
{
}
}
}