forked from teamnwah/openmw-tes3coop
18 lines
345 B
C++
18 lines
345 B
C++
#ifndef GRAPHICSSETTINGS_HPP
|
|
#define GRAPHICSSETTINGS_HPP
|
|
|
|
#include "settingsbase.hpp"
|
|
|
|
namespace Launcher
|
|
{
|
|
class GraphicsSettings : public SettingsBase<QMap<QString, QString> >
|
|
{
|
|
public:
|
|
GraphicsSettings();
|
|
~GraphicsSettings();
|
|
|
|
bool writeFile(QTextStream &stream);
|
|
|
|
};
|
|
}
|
|
#endif // GRAPHICSSETTINGS_HPP
|