Don\'t want any code, just want some sort of guidance. Would like to keep my academic integrity in tact ;)
I keep getting that annoying error. I need to call the toS
What you're probably doing is calling toString() on the class Room, not an instance of it. For example, instead of writing:
toString()
Room.toString()
write:
Room r = new Room() r.toString()