mirror of
				https://github.com/Ed94/HandmadeHero.git
				synced 2025-10-30 22:40:55 -07:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			572 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			572 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifdef __clang__
 | |
| #pragma clang diagnostic push
 | |
| #pragma clang diagnostic ignored "-Wunused-const-variable"
 | |
| #pragma clang diagnostic ignored "-Wswitch"
 | |
| #pragma clang diagnostic ignored "-Wunused-variable"
 | |
| #pragma clang diagnostic ignored "-Wunknown-pragmas"
 | |
| #pragma clang diagnostic ignored "-Wvarargs"
 | |
| #pragma clang diagnostic ignored "-Wunused-function"
 | |
| #pragma clang diagnostic ignored "-Wunused-but-set-variable"
 | |
| #endif
 | |
| 
 | |
| #include "platform/grime.hpp"
 | |
| 
 | |
| #if Build_Unity
 | |
| #	include "engine/engine.cpp"
 | |
| #	if SYSTEM_WINDOWS
 | |
| #		include "engine/win32_engine.cpp"
 | |
| #	endif
 | |
| #endif
 |