mirror of
				https://github.com/Ed94/gencpp.git
				synced 2025-10-31 06:50:53 -07:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			271 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			271 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #include "Bloat.cpp"
 | |
| 
 | |
| 
 | |
| #ifdef gen_time
 | |
| #include "gen.cpp"
 | |
| 
 | |
| int gen_main()
 | |
| {
 | |
| 	Memory::setup();
 | |
| 
 | |
| 	log_fmt("\nPress any key after attaching to process\n");
 | |
| 	getchar();
 | |
| 
 | |
| 	gen::init();
 | |
| 
 | |
| 	Memory::cleanup();
 | |
| 	return 0;
 | |
| }
 | |
| #endif
 | |
| 
 | |
| 
 | |
| #ifdef runtime
 | |
| int main()
 | |
| {
 | |
| 	return 0;
 | |
| }
 | |
| #endif
 |