forked from mirror/openmw-tes3mp
16 lines
294 B
C++
16 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
|