mirror of https://github.com/axmolengine/axmol.git
24 lines
268 B
C
24 lines
268 B
C
|
|
||
|
#ifndef __COCOSSTUDIOEXTENSION_H__
|
||
|
#define __COCOSSTUDIOEXTENSION_H__
|
||
|
|
||
|
#include "math/CCAffineTransform.h"
|
||
|
#include "CocosStudioExport.h"
|
||
|
|
||
|
NS_CC_BEGIN
|
||
|
|
||
|
class CCS_DLL NodeExtension
|
||
|
{
|
||
|
public:
|
||
|
NodeExtension();
|
||
|
~NodeExtension();
|
||
|
|
||
|
private:
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
NS_CC_END
|
||
|
|
||
|
|
||
|
#endif
|