Implement first iteration of players tab (chat/player list) and sketch API

This commit is contained in:
John Michael Gross
2016-09-18 07:04:32 -07:00
parent 113a6b63c0
commit 15d6a89f9c
11 changed files with 148 additions and 10 deletions

View File

@@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.IO;
using System.Linq;
@@ -73,5 +74,10 @@ namespace PistonServer
uiUpdate.Stop();
ServerManager.Static.StopServer();
}
protected override void OnClosing(CancelEventArgs e)
{
ServerManager.Static.StopServer();
}
}
}