Advertisement
Guest User

Untitled

a guest
Dec 9th, 2016
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. namespace maze_game
  2. {
  3. class Room
  4. {
  5. private string RoomName;
  6. private Room N = null;
  7. private Room E = null;
  8.  
  9. public void setName(string N)
  10. {
  11. RoomName = N;
  12. }
  13.  
  14. public void setN(Room X);
  15.     {
  16.        N = X;
  17.     }
  18.  
  19. public Room getE()
  20. {
  21. return E;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement