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