Magic_Game/Easy2D/easy2d.h

39 lines
761 B
C
Raw Normal View History

2017-09-10 23:56:52 +08:00
/******************************************************
2017-09-29 17:57:17 +08:00
* Easy2D Game Engine
2017-09-10 23:56:52 +08:00
*
* Website: http://www.easy2d.cn
2017-10-12 02:44:44 +08:00
* Source Code: https://gitee.com/werelone/Easy2D
2017-09-10 23:56:52 +08:00
******************************************************/
#pragma once
#ifndef __cplusplus
#error Easy2D is only for C++
#endif
2017-09-18 23:59:08 +08:00
#if _MSC_VER < 1900
#error Do Visual Studio 2015/2017 specific stuff
2017-09-12 12:53:34 +08:00
#endif
2017-09-10 23:56:52 +08:00
2017-10-12 02:44:44 +08:00
#include "emacros.h"
#include "etypedef.h"
2017-10-12 02:44:44 +08:00
#include "ecommon.h"
#include "ebase.h"
#include "emanagers.h"
2017-10-13 11:42:36 +08:00
#include "enodes.h"
#include "elisteners.h"
2017-10-13 11:42:36 +08:00
#include "etools.h"
2017-10-19 00:50:04 +08:00
#include "eactions.h"
#include "etransitions.h"
#include "egeometry.h"
2017-09-29 17:30:37 +08:00
2017-10-12 02:44:44 +08:00
2017-10-13 11:42:36 +08:00
#if defined(DEBUG) || defined(_DEBUG)
2017-10-12 02:44:44 +08:00
#pragma comment(lib, "Easy2Ddw.lib")
2017-10-13 11:42:36 +08:00
#else
2017-10-12 02:44:44 +08:00
#pragma comment(lib, "Easy2Dw.lib")
#endif
2017-09-29 17:30:37 +08:00
2017-10-12 02:44:44 +08:00
using namespace e2d;