MatchmakerServer/Matchmaker/BaseServer/Constants.cs
2023-01-15 13:26:28 -08:00

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;
}