You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
445 B

using System;
using System.Threading;
4 years ago
using System.Threading.Tasks;
using BasicServer.Arch;
4 years ago
namespace BasicServer {
internal static class Program {
private static void Main() {
Console.Title = "Game Server";
Console.SetOut(new DatePrefix());
4 years ago
var mainThread = new Thread(ThreadManager.MainThread);
mainThread.Start();
4 years ago
ThreadManager.IsRunning = true;
}
}
}