Exemplo n.º 1
0
        public bool AddLaneConnection(uint laneId, uint connectionId)
        {
            Lane lane = GetLane(laneId);

            GetLane(connectionId); // makes sure lane information is stored

            return(lane.AddConnection(connectionId));
        }