mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-10-31 16:26:38 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			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
 |