10 lines
217 B
C#
10 lines
217 B
C#
|
using ZGame;
|
|||
|
|
|||
|
namespace ZC
|
|||
|
{
|
|||
|
public class TestEventArgs : GameEventArgs
|
|||
|
{
|
|||
|
public static readonly int EventId = typeof(TestEventArgs).GetHashCode();
|
|||
|
public override int Id => EventId;
|
|||
|
}
|
|||
|
}
|