Magic_Game/core/easy2d.h

37 lines
739 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 < 1700
# error Easy2D 不支持 Visual Studio 2012 以下版本
#endif
#include "e2dmacros.h"
#include "e2dcommon.h"
#include "e2dbase.h"
#include "e2dmanager.h"
#include "e2dnode.h"
#include "e2dshape.h"
#include "e2dtool.h"
#include "e2daction.h"
#include "e2dtransition.h"
#include "e2dcollider.h"
#if defined(DEBUG) || defined(_DEBUG)
# pragma comment(lib, "Easy2Ddw.lib")
#else
# pragma comment(lib, "Easy2Dw.lib")
#endif