/****************************************************** * Easy2D Game Framework * * Website: https://www.easy2d.cn * Source Code: https://github.com/Nomango/Easy2D ******************************************************/ #pragma once #ifndef __cplusplus #error 仅能在 C++ 环境下使用 Easy2D #endif #if _MSC_VER < 1600 #error Easy2D 不支持 Visual Studio 2010 以下版本 #endif #include "emacros.h" #include "ecommon.h" #include "ebase.h" #include "emanager.h" #include "enode.h" #include "eshape.h" #include "etool.h" #include "eaction.h" #include "etransition.h" #include "ecollider.h" #if defined(DEBUG) || defined(_DEBUG) #pragma comment(lib, "Easy2Ddw.lib") #else #pragma comment(lib, "Easy2Dw.lib") #endif using namespace e2d; using namespace e2d::action;