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