mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-11-04 14:20:06 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
	
		
			523 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
	
		
			523 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#pragma once
 | 
						|
 | 
						|
namespace scwx
 | 
						|
{
 | 
						|
namespace qt
 | 
						|
{
 | 
						|
namespace 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 map
 | 
						|
} // namespace qt
 | 
						|
} // namespace scwx
 |