// Text Adventure Game // WTF, CS206: Data Structures // Bryn Mawr College, Spring 2016 // D.S. Blank public class Thing { String name; String description; public Thing(String name, String description) { this.name = name; this.description = description; } }