mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 21:40:05 +00:00
Add radar wireframe debug menu selection
This commit is contained in:
parent
77e02b76b1
commit
f010ea8fad
7 changed files with 53 additions and 5 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue