Magic_Game/Easy2D/easy2d.h

36 lines
780 B
C
Raw Normal View History

2017-09-10 23:56:52 +08:00
/******************************************************
2017-09-27 17:56:28 +08:00
* Easy2D Game Engine (v1.1.0)
2017-09-10 23:56:52 +08:00
* http://www.easy2d.cn
*
* Depends on EasyX (Ver:20170827(beta))
******************************************************/
#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-09-27 17:56:28 +08:00
#include <e2dbase.h>
#include "e2dmsg.h"
#include "e2dtool.h"
#include "e2dstyle.h"
#include "e2dobj.h"
#include "e2daction.h"
2017-09-10 23:56:52 +08:00
#if defined(UNICODE) && (_DEBUG)
#pragma comment(lib,"Easy2Ddw.lib")
#elif !defined(UNICODE) && (_DEBUG)
#pragma comment(lib,"Easy2Dd.lib")
#elif defined(UNICODE)
#pragma comment(lib,"Easy2Dw.lib")
#elif !defined(UNICODE)
#pragma comment(lib,"Easy2D.lib")
#endif
using namespace easy2d;