mirror of
https://github.com/narzoul/DDrawCompat
synced 2024-12-30 08:55:36 +01:00
24 lines
431 B
C++
24 lines
431 B
C++
#pragma once
|
|
|
|
#include <Config/MappedSetting.h>
|
|
|
|
namespace Config
|
|
{
|
|
namespace Settings
|
|
{
|
|
class FullscreenMode : public MappedSetting<UINT>
|
|
{
|
|
public:
|
|
static const UINT BORDERLESS = 0;
|
|
static const UINT EXCLUSIVE = 1;
|
|
|
|
FullscreenMode()
|
|
: MappedSetting("FullscreenMode", "borderless", { {"borderless", BORDERLESS}, {"exclusive", EXCLUSIVE} })
|
|
{
|
|
}
|
|
};
|
|
}
|
|
|
|
extern Settings::FullscreenMode fullscreenMode;
|
|
}
|