33 lines
		
	
	
		
			621 B
		
	
	
	
		
			C++
		
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			621 B
		
	
	
	
		
			C++
		
	
	
	
| /******************************************************
 | |
| * Easy2D Game Engine
 | |
| * 
 | |
| * Website: http://www.easy2d.cn
 | |
| * Source Code: https://gitee.com/werelone/Easy2D
 | |
| ******************************************************/
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #ifndef __cplusplus
 | |
| 	#error Easy2D is only for C++
 | |
| #endif
 | |
| 
 | |
| #if _MSC_VER < 1900
 | |
| 	#error Do Visual Studio 2015/2017 specific stuff
 | |
| #endif
 | |
| 
 | |
| 
 | |
| #include "emacros.h"
 | |
| #include "ecommon.h"
 | |
| #include "ebase.h"
 | |
| #include "enodes.h"
 | |
| #include "etools.h"
 | |
| 
 | |
| 
 | |
| #if defined(DEBUG) || defined(_DEBUG)
 | |
| 	#pragma comment(lib, "Easy2Ddw.lib")
 | |
| #else
 | |
| 	#pragma comment(lib, "Easy2Dw.lib")
 | |
| #endif
 | |
| 
 | |
| 
 | |
| using namespace e2d; |