/**
 * Enumeration class CaveContents - th epossible contents of a "Hunt the Wumpus" cave.
 *   @author Dave Reed
 *   @version 11/15/15
 */
public enum CaveContents {
    EMPTY, WUMPUS, BATS, PIT
}