Merge pull request #4568 from deathbeam/proper-shutdown

Properly shutdown everything on window close
This commit is contained in:
Tomas Slusny
2018-08-29 15:20:28 +02:00
committed by GitHub
5 changed files with 47 additions and 0 deletions

View File

@@ -51,4 +51,9 @@ public interface GameEngine
* @return true if on the main thread, false otherwise
*/
boolean isClientThread();
/**
* Shut downs all open connections and files in client and serializes not serialized data.
*/
void shutDown();
}