Advertisement
Guest User

Untitled

a guest
Oct 19th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. # Ruchella Kock
  2. # 12460796
  3. # This file defines the Items class
  4.  
  5.  
  6. class Items(object):
  7. """
  8. Representation of an item in Adventure
  9. """
  10.  
  11. def __init__(self, name, description, initial_room_id):
  12. self.name = name
  13. self.description = description
  14. self.initial_room_id = initial_room_id
  15.  
  16. def __str__(self):
  17. return self.name + ": " + self.description
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement