mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 04:26:42 +00:00 
			
		
		
		
	* Convert window mode, vsync mode into enums, screenshot type into a struct. * Add missing doc for screenshot type.
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			245 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			245 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef OPENMW_COMPONENTS_SETTINGS_WINDOWMODE_H
 | 
						|
#define OPENMW_COMPONENTS_SETTINGS_WINDOWMODE_H
 | 
						|
 | 
						|
namespace Settings
 | 
						|
{
 | 
						|
    enum class WindowMode
 | 
						|
    {
 | 
						|
        Fullscreen = 0,
 | 
						|
        WindowedFullscreen = 1,
 | 
						|
        Windowed = 2,
 | 
						|
    };
 | 
						|
}
 | 
						|
 | 
						|
#endif
 |