mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-10-31 21:30: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
 | 
