mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-10 06:39:49 +00:00
17 lines
294 B
C++
17 lines
294 B
C++
|
#ifndef GRAPHICSSETTINGS_HPP
|
||
|
#define GRAPHICSSETTINGS_HPP
|
||
|
|
||
|
#include "settingsbase.hpp"
|
||
|
|
||
|
class GraphicsSettings : public SettingsBase<QMap<QString, QString>>
|
||
|
{
|
||
|
public:
|
||
|
GraphicsSettings();
|
||
|
~GraphicsSettings();
|
||
|
|
||
|
bool writeFile(QTextStream &stream);
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // GRAPHICSSETTINGS_HPP
|