package vooga.rts.gamedesign.state; /** + * This enum represents all the possible states that an interactive entity can * have. * * @author Ryan Fishel * */ public enum UnitState { ATTACK, GATHER, OCCUPY, PRODUCE, NO_STATE; }