package vooga.rts.gamedesign.state; /** * This enum represents the possible states of moving which are moving and * stationary. * * @author Ryan Fishel * @author Kevin Oh * @author Francesco Agosti * @author Wenshun Liu * */ public enum MovementState { MOVING, STATIONARY; }