package vooga.rts.gamedesign.state;
/**
* This enum represents the possible states of occupying which are occupying
* and not occupying.
*
* @author Ryan Fishel
* @author Kevin Oh
* @author Francesco Agosti
* @author Wenshun Liu
*
*/
public enum OccupyState {
OCCUPYING, NOT_OCCUPYING;
}