axmol/tools/tolua++/CCObject.pkg

30 lines
468 B
Plaintext
Raw Normal View History

#include "ccTypes.h"
2011-06-14 14:31:25 +08:00
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);
2011-06-14 14:31:25 +08:00
};
}//namespace cocos2d