// 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 . #pragma once #include "carla/MsgPack.h" #include "carla/geom/Transform.h" #include #include namespace carla { namespace rpc { class MapInfo { public: std::string name; std::vector recommended_spawn_points; MSGPACK_DEFINE_ARRAY(name, recommended_spawn_points); }; } // namespace rpc } // namespace carla