axmol/tools/tolua++/CCObject.pkg

30 lines
468 B
Plaintext

#include "ccTypes.h"
namespace cocos2d {
class CCCopying
{
CCObject* copyWithZone(CCZone* pZone);
};
class CCObject : public CCCopying
{
CCObject(void);
~CCObject(void);
void release(void);
void retain(void);
CCObject* autorelease(void);
CCObject* copy(void);
bool isSingleRefrence(void);
unsigned int retainCount(void);
bool isEqual(const CCObject* pObject);
void update(ccTime dt);
};
}//namespace cocos2d