mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-19 22:23:51 +00:00
18 lines
371 B
C++
18 lines
371 B
C++
#ifndef GRAPHICSSETTINGS_HPP
|
|
#define GRAPHICSSETTINGS_HPP
|
|
|
|
#include <components/config/settingsbase.hpp>
|
|
|
|
namespace Launcher
|
|
{
|
|
class GraphicsSettings : public Config::SettingsBase<QMap<QString, QString> >
|
|
{
|
|
public:
|
|
GraphicsSettings();
|
|
~GraphicsSettings();
|
|
|
|
bool writeFile(QTextStream &stream);
|
|
|
|
};
|
|
}
|
|
#endif // GRAPHICSSETTINGS_HPP
|