mirror of https://github.com/axmolengine/axmol.git
16 lines
332 B
C++
16 lines
332 B
C++
|
|
#ifndef __COCOS2D_X_EXTRA_H_
|
|
#define __COCOS2D_X_EXTRA_H_
|
|
|
|
#include "cocos2d.h"
|
|
#include <string>
|
|
|
|
using namespace std;
|
|
using namespace cocos2d;
|
|
|
|
#define NS_CC_EXTRA_BEGIN namespace cocos2d { namespace extra {
|
|
#define NS_CC_EXTRA_END }}
|
|
#define USING_NS_CC_EXTRA using namespace cocos2d::extra
|
|
|
|
#endif /* __COCOS2D_X_EXTRA_H_ */
|