12 lines
257 B
C#
12 lines
257 B
C#
|
namespace Game
|
|||
|
{
|
|||
|
public class TestEventArgs : GameEventArgs
|
|||
|
{
|
|||
|
public static readonly int EventId = typeof(TestEventArgs).GetHashCode();
|
|||
|
public override int Id => EventId;
|
|||
|
|
|||
|
public TestEventArgs()
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|