Select Git revision
Building.java
Building.java 345 B
package simulation;
public class Building {
/** The number of floors in the building **/
public static int FLOORS;
/** Represents the ground floor location */
public static final int LOWEST_FLOOR = 1;
/** Represents the mailroom location */
public static final int MAILROOM_LOCATION = 1;
}