mirror of
				https://github.com/thunderbrewhq/thunderbrew
				synced 2025-10-31 00:06:05 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			370 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			370 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef EVENT_SYNTHESIZE_HPP
 | |
| #define EVENT_SYNTHESIZE_HPP
 | |
| 
 | |
| #include <cstdint>
 | |
| 
 | |
| class EvtContext;
 | |
| 
 | |
| void SynthesizeDestroy(EvtContext* context);
 | |
| 
 | |
| void SynthesizeIdle(EvtContext* context, uint32_t currTime, float elapsedSec);
 | |
| 
 | |
| int32_t SynthesizeInitialize(EvtContext* context);
 | |
| 
 | |
| void SynthesizePaint(EvtContext* context);
 | |
| 
 | |
| void SynthesizePoll(EvtContext* context);
 | |
| 
 | |
| #endif
 | 
