/**
 * Enumeration class CaveContents - the possible contents of a "Hunt the Wumpus" cave.
 *   @author Dave Reed
 *   @version 4/1/13
 */
public enum CaveContents {
    EMPTY, WUMPUS, BATS, PIT
}