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