// Text Adventure Game // WTF, CS206: Data Structures // Bryn Mawr College, Spring 2016 // D.S. Blank public class Action { String command; String toplace; LinkedList needThings; public Action(String command, String toplace, LinkedList needThings) { this.command = command; this.toplace = toplace; this.needThings = needThings; } }