Add radar wireframe debug menu selection

This commit is contained in:
Dan Paulat 2024-12-14 23:08:53 -06:00
parent 77e02b76b1
commit f010ea8fad
7 changed files with 53 additions and 5 deletions

View file

@ -9,16 +9,17 @@ namespace map
struct MapSettings
{
explicit MapSettings() : isActive_ {false} {}
explicit MapSettings() {}
~MapSettings() = default;
MapSettings(const MapSettings&) = delete;
MapSettings(const MapSettings&) = delete;
MapSettings& operator=(const MapSettings&) = delete;
MapSettings(MapSettings&&) noexcept = default;
MapSettings(MapSettings&&) noexcept = default;
MapSettings& operator=(MapSettings&&) noexcept = default;
bool isActive_;
bool isActive_ {false};
bool radarWireframeEnabled_ {false};
};
} // namespace map