Skip to content

Instantly share code, notes, and snippets.

@AndreasHassing
Created September 21, 2014 16:53
Show Gist options
  • Save AndreasHassing/f2b7d52d1a211dbcd081 to your computer and use it in GitHub Desktop.
Save AndreasHassing/f2b7d52d1a211dbcd081 to your computer and use it in GitHub Desktop.
setExits in Room.java
public void setExits(Room northExit, Room eastExit, Room southExit, Room westExit) {
this.northExit = northExit;
this.eastExit = eastExit;
this.southExit = southExit;
this.westExit = westExit;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment