mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-11-04 06:40:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			473 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			473 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#pragma once
 | 
						|
 | 
						|
namespace scwx::qt::map
 | 
						|
{
 | 
						|
 | 
						|
struct MapSettings
 | 
						|
{
 | 
						|
   explicit MapSettings() = default;
 | 
						|
   ~MapSettings()         = default;
 | 
						|
 | 
						|
   MapSettings(const MapSettings&)            = delete;
 | 
						|
   MapSettings& operator=(const MapSettings&) = delete;
 | 
						|
 | 
						|
   MapSettings(MapSettings&&) noexcept            = default;
 | 
						|
   MapSettings& operator=(MapSettings&&) noexcept = default;
 | 
						|
 | 
						|
   bool isActive_ {false};
 | 
						|
   bool radarWireframeEnabled_ {false};
 | 
						|
};
 | 
						|
 | 
						|
} // namespace scwx::qt::map
 |