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