/**
  * Interfaces between the Listener class and the Client class, allowing the move direction to be
  * sent.
  */
 public void move(char direction) {
   client.sendMove(direction);
 }