39 lines
752 B
C++
39 lines
752 B
C++
/******************************************************
|
|
* 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 "emanagers.h"
|
|
#include "enodes.h"
|
|
#include "etools.h"
|
|
#include "eactions.h"
|
|
#include "etransitions.h"
|
|
#include "eshape.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; |