8 lines
214 B
C#
8 lines
214 B
C#
|
namespace ZGameFramework
|
||
|
{
|
||
|
public class TestEventArgs1 : GameEventArgs
|
||
|
{
|
||
|
public static readonly int EventId = typeof(TestEventArgs1).GetHashCode();
|
||
|
public override int Id => EventId;
|
||
|
}
|
||
|
}
|