organicmaps/platform/style_utils.hpp
Ferenc Géczi 2c65f4ca90 [qt] Add Night Mode to preferences dialog
Signed-off-by: Ferenc Géczi <ferenc.gm@gmail.com>
2024-12-18 21:23:27 +03:00

11 lines
124 B
C++

#pragma once
namespace style_utils
{
enum class NightMode : uint8_t
{
Off = 0,
On = 1,
};
} // namespace style_utils