package Controller; import View.MyFrame; //import Model.TrafficLight; /** * * @author Simon Marshall * @author jc209673 */ public class Simulator { /** * * @param args initializes and runs the simulation */ public static void main(String[] args) { MyFrame frame = new MyFrame(); frame.setVisible(true); } }