package org.opentrafficsim.road.network;
import org.opentrafficsim.core.network.Network;
import org.opentrafficsim.core.perception.PerceivableContext;
import org.opentrafficsim.road.definitions.RoadDefinitions;
/**
* RoadNetwork adds a number of methods to the Network class that are specific for roads, such as the LaneTypes.
*
* Copyright (c) 2003-2022 Delft University of Technology, Jaffalaan 5, 2628 BX Delft, the Netherlands. All rights reserved. See
* for project information www.simulation.tudelft.nl. The
* source code and binary code of this software is proprietary information of Delft University of Technology.
* @author Alexander Verbraeck
*/
public interface RoadNetwork extends Network, PerceivableContext, RoadDefinitions
{
// interfaces that are unique to a Roadnetwork as opposed to a Network
}