mirror of https://github.com/axmolengine/axmol.git
16 lines
312 B
C++
16 lines
312 B
C++
#ifndef _CCB_MEMBERVARIABLEASSIGNER_H_
|
|
#define _CCB_MEMBERVARIABLEASSIGNER_H_
|
|
|
|
#include "cocos2d.h"
|
|
|
|
NS_CC_EXT_BEGIN
|
|
|
|
class CCBMemberVariableAssigner {
|
|
public:
|
|
virtual bool onAssignCCBMemberVariable(CCObject * pTarget, const char * pMemberVariableName, CCNode * pNode) = 0;
|
|
};
|
|
|
|
NS_CC_EXT_END
|
|
|
|
#endif
|