package simulator; /** * Main - This is the main class which starts the program by creating an amusement park simulation and calling the * main menu. * * @author Gabriela * */ public class Main { public static void main(String [] args) { // We want this separate from everything else because it should // only be displayed once, at the start of the program. System.out.println("\nAmusement Park Simulator"); System.out.println("****************************\n"); // Create an amusement park simulation and call mainMenu on it // to start the program. AmusementParkSimulation sim = new AmusementParkSimulation(); sim.mainMenu(); } }