mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 21:40:05 +00:00
26 lines
457 B
C++
26 lines
457 B
C++
#pragma once
|
|
|
|
namespace scwx
|
|
{
|
|
namespace qt
|
|
{
|
|
namespace map
|
|
{
|
|
|
|
struct MapSettings
|
|
{
|
|
explicit MapSettings() : isActive_ {false} {}
|
|
~MapSettings() = default;
|
|
|
|
MapSettings(const MapSettings&) = delete;
|
|
MapSettings& operator=(const MapSettings&) = delete;
|
|
|
|
MapSettings(MapSettings&&) noexcept = default;
|
|
MapSettings& operator=(MapSettings&&) noexcept = default;
|
|
|
|
bool isActive_;
|
|
};
|
|
|
|
} // namespace map
|
|
} // namespace qt
|
|
} // namespace scwx
|