package comp1110.ass1;
public enum State {
DOG,
OWNER,
TREE,
CAT,
EMPTY
/*
* Note that required dog and owner locations are not elements of State
* Rather they are stored in arrays in the board state class
*/
}