package vooga.rts.gamedesign.state; /** * This enum represents the possible states of attacking which are attacking and * not attacking. * * @author Ryan Fishel * @author Kevin Oh * @author Francesco Agosti * @author Wenshun Liu * */ public enum AttackingState { ATTACKING, NOT_ATTACKING, WAITING; }