EarnSchedule.java

package com.vikingz.unitycoon.building;

/**
 * Uses together with the money methods. 
 * Earning can either be every day or only at the end of the semester.
 * 
 * This is a new enum used to complete UR_FINANCE and FR_STUDENT_FINANCE.
 */
public enum EarnSchedule {
    DAILY,
    SEMESTERLY;
}