BuildingType.java

package io.github.unisim.building;

/**
 * Represents the different types of buildings as each type
 * has its' own counter.
 */
public enum BuildingType {
    RECREATION,
    LEARNING,
    SLEEPING,
    EATING,
}