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

27 lines
446 B
C++

#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;
}