/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Utilities;
import Agents.TrafficLightHub;
/**
*
* @author sagar
*/
public class TrafficLightGenerator {
/**
*
* @return
*/
public static TrafficLightHub generate(){
TrafficLightHub trafficLightHub = new TrafficLightHub();
return trafficLightHub;
}
}