12 lines
No EOL
226 B
C#
Executable file
12 lines
No EOL
226 B
C#
Executable file
|
|
|
|
namespace Matchmaker.Server.BaseServer;
|
|
|
|
internal static class Constants
|
|
{
|
|
public const int TicksPerSec = 30;
|
|
public const float MsPerTick = 1000f / TicksPerSec;
|
|
public const int DataBufferSize = 4096;
|
|
|
|
|
|
} |