libcarla/include/carla/rpc/QualityLevel.h

30 lines
521 B
C
Raw Normal View History

2024-10-18 13:19:59 +08:00
// 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/MsgPack.h"
#include <cstdint>
namespace carla {
namespace rpc {
enum class QualityLevel : uint8_t {
Low,
// Medium,
// High,
Epic,
SIZE,
INVALID
};
} // namespace rpc
} // namespace carla
MSGPACK_ADD_ENUM(carla::rpc::QualityLevel);