mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-11-04 12:10:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			330 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			330 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#pragma once
 | 
						|
 | 
						|
#include <cstdint>
 | 
						|
 | 
						|
namespace scwx
 | 
						|
{
 | 
						|
namespace common
 | 
						|
{
 | 
						|
 | 
						|
constexpr uint32_t MAX_1_DEGREE_RADIALS   = 360;
 | 
						|
constexpr uint32_t MAX_0_5_DEGREE_RADIALS = 720;
 | 
						|
constexpr uint32_t MAX_RADIALS            = MAX_0_5_DEGREE_RADIALS;
 | 
						|
constexpr uint32_t MAX_DATA_MOMENT_GATES  = 1840;
 | 
						|
 | 
						|
} // namespace common
 | 
						|
} // namespace scwx
 |