Added skeleton for Server Connection structure changes.

Added Data and Event classes for Data saving on the server.
Added DataParser class for translating requests to data.
Added ServerData package
This commit is contained in:
MickWerf
2020-05-18 14:09:48 +02:00
parent 7969746bc1
commit 8dee45a844
8 changed files with 56 additions and 15 deletions

View File

@@ -8,7 +8,6 @@ public class Server {
private SessionController sessionController;
private Thread sessionThread;
private HashMap<String, Thread> gameThreads;
public static final int PORT = 8000;
public void start() {
this.sessionController = new SessionController();