package Agents.Behaviour;
/**
* This is a interface for the general TrafficLightHub Behaviour. TrafficLightHub
* currently controls the all the traffic lights at intersections. This interface modifies
* the general Behavior to suite the TrafficLightHub behaviour. TrafficLightHubBehaviour
* implements this interface for TrafficLight operation.
* @see Behaviour
* @see TrafficLightHubBehaviour
* @see TrafficLight
* @see TrafficLightHub
*/
public interface TrafficLightBehaviour extends Behaviour {
}