// Text Adventure Game // WTF, CS206: Data Structures // Bryn Mawr College, Spring 2016 // D.S. Blank class Node { T data; Node next; Node(T data) { this.data = data; } }