Added keyboard input support for moving players and box operations

This commit is contained in:
Bokros Bálint
2016-05-07 15:19:58 +02:00
parent 536081b015
commit 645028bc94
2 changed files with 69 additions and 0 deletions

View File

@ -45,4 +45,23 @@ public class Game {
public void stopGame(GameoverCause cause) {
}
public void moveONeill(Direction direction) {
oneill.move(direction);
}
public void moveJaffa(Direction direction) {
jaffa.move(direction);
}
public void boxONeill() {
}
public void boxJaffa() {
}
public void updateDisplay() {
}
}