1
0
mirror of https://github.com/narzoul/DDrawCompat synced 2024-12-30 08:55:36 +01:00
DDrawCompat/DDrawCompat/Config/Settings/DesktopResolution.h

27 lines
446 B
C
Raw Normal View History

2023-01-07 23:14:38 +01:00
#pragma once
#include <Windows.h>
#include <Common/Comparison.h>
#include <Config/MappedSetting.h>
namespace Config
{
namespace Settings
{
class DesktopResolution : public MappedSetting<SIZE>
{
public:
static const SIZE DESKTOP;
DesktopResolution();
protected:
std::string getValueStr() const override;
void setValue(const std::string& value) override;
};
}
extern Settings::DesktopResolution desktopResolution;
}