12 lines
167 B
C#
12 lines
167 B
C#
|
|
||
|
|
||
|
namespace Matchmaker.Server.BaseServer;
|
||
|
|
||
|
internal static class GameLogic
|
||
|
{
|
||
|
public static void Update()
|
||
|
{
|
||
|
ThreadManager.UpdateMain();
|
||
|
|
||
|
}
|
||
|
}
|