// Text Adventure Game // WTF, CS206: Data Structures // Bryn Mawr College, Spring 2016 // D.S. Blank public class LinkedList { Node head; public LinkedList() { head = null; } public void append(T item) { Node node = new Node(item); node.next = head; head = node; } }