mirror of
				https://github.com/goldenfishs/MRobot.git
				synced 2025-11-04 05:23:10 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			255 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			255 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
  弹道补偿算法。
 | 
						|
*/
 | 
						|
 | 
						|
#include "ballistics.h"
 | 
						|
 | 
						|
void Ballistics_Init(Ballistics_t *b) { (void)b; }
 | 
						|
void Ballistics_Apply(Ballistics_t *b, float bullet_speed) {
 | 
						|
  (void)b;
 | 
						|
  (void)bullet_speed;
 | 
						|
}
 | 
						|
void Ballistics_Reset(Ballistics_t *b) { (void)b; }
 |