Skip to content
Snippets Groups Projects
Select Git revision
  • a5b85d5ed6d357830817be19e24c413461fc170a
  • master default protected
2 results

Building.java

Blame
  • 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;
    
    }