Guest User

game.py

a guest
Mar 21st, 2019
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.30 KB | None | 0 0
  1. class Room(object):
  2.  
  3.     def __init__(self, name, description):
  4.         self.name = name
  5.         self.description = description
  6.         self.paths = {}
  7.  
  8.     def go(self, direction):
  9.         return self.paths.get(direction, None)
  10.  
  11.     def add_paths(self, paths):
  12.         self.paths.update(paths)
Add Comment
Please, Sign In to add comment