mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 17:49:55 +00:00
15 lines
275 B
C++
15 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
|