mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-03 17:37:18 +00:00
15 lines
245 B
C++
15 lines
245 B
C++
|
#ifndef OPENMW_COMPONENTS_SETTINGS_WINDOWMODE_H
|
||
|
#define OPENMW_COMPONENTS_SETTINGS_WINDOWMODE_H
|
||
|
|
||
|
namespace Settings
|
||
|
{
|
||
|
enum class WindowMode
|
||
|
{
|
||
|
Fullscreen = 0,
|
||
|
WindowedFullscreen = 1,
|
||
|
Windowed = 2,
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|