Advertisement
chrisCNG

roomDojo1

Nov 17th, 2019
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. # room Class Starter
  2. class Room():
  3.     def __init__(self, room_name):
  4.         self.name = room_name
  5.         self.description = None
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement