merge master into this branch
# Conflicts: # core/src/netwerkprog/game/util/game/Character.java # core/src/netwerkprog/game/util/game/Faction.java
This commit is contained in:
15
core/src/netwerkprog/game/server/Parser.java
Normal file
15
core/src/netwerkprog/game/server/Parser.java
Normal file
@@ -0,0 +1,15 @@
|
||||
package netwerkprog.game.server;
|
||||
|
||||
import netwerkprog.game.util.data.ParserCallback;
|
||||
|
||||
public class Parser {
|
||||
private final ParserCallback callback;
|
||||
|
||||
public Parser(ParserCallback callback) {
|
||||
this.callback = callback;
|
||||
}
|
||||
|
||||
public void parse(String request) {
|
||||
callback.onDataReceived(null);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user