18 lines
384 B
C++
18 lines
384 B
C++
// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma
|
|
// de Barcelona (UAB).
|
|
//
|
|
// This work is licensed under the terms of the MIT license.
|
|
// For a copy, see <https://opensource.org/licenses/MIT>.
|
|
|
|
#pragma once
|
|
|
|
#include "carla/geom/Vector3D.h"
|
|
|
|
namespace carla {
|
|
namespace rpc {
|
|
|
|
using Vector3D = geom::Vector3D;
|
|
|
|
} // namespace rpc
|
|
} // namespace carla
|