Deleted GameServerThread after being re merged in

#chore
This commit is contained in:
William Muir
2017-07-24 23:20:47 +12:00
parent 8b0af5bb62
commit cdb9337aed
8 changed files with 43 additions and 389 deletions
@@ -60,7 +60,7 @@ public class MainServerThread extends Observable implements Runnable, PacketBuff
//You should handle interrupts in some way, so that the thread won't keep on forever if you exit the app.
while (!thread.isInterrupted()) {
try {
Thread.sleep(1000 / UPDATES_PER_SECOND); //60 times per second we should calculate the game state
Thread.sleep(1000 / UPDATES_PER_SECOND);
} catch (InterruptedException e) {
e.printStackTrace();
}