Split game initialization and starting into a separate thread and file.

This commit is contained in:
Westin Miller
2017-11-25 17:25:06 -08:00
parent e709b6c321
commit f0adeddb66
7 changed files with 296 additions and 122 deletions

View File

@@ -90,7 +90,7 @@ quit";
{
var ui = new TorchUI(_server);
if (_config.Autostart)
new Thread(_server.Start).Start();
_server.Start();
ui.ShowDialog();
}
else