mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-25 06:35:30 +00:00
16 lines
275 B
C++
16 lines
275 B
C++
#ifndef GAMESETTINGS_HPP
|
|
#define GAMESETTINGS_HPP
|
|
|
|
#include "settingsbase.hpp"
|
|
|
|
class GameSettings : public SettingsBase<QMultiMap<QString, QString>>
|
|
{
|
|
public:
|
|
GameSettings();
|
|
~GameSettings();
|
|
|
|
bool writeFile(QTextStream &stream);
|
|
};
|
|
|
|
#endif // GAMESETTINGS_HPP
|