co-maps/libs/platform/style_utils.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
124 B
C++
Raw Normal View History

2025-11-22 13:58:55 +01:00
#pragma once
namespace style_utils
{
enum class NightMode : uint8_t
{
Off = 0,
On = 1,
};
} // namespace style_utils