Added keyboard input support for moving players and box operations
This commit is contained in:
@ -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() {
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user