mirror of https://github.com/axmolengine/axmol.git
17 lines
240 B
Plaintext
17 lines
240 B
Plaintext
|
|
||
|
namespace cocos2d {
|
||
|
|
||
|
class CCString : public CCObject
|
||
|
{
|
||
|
|
||
|
CCString();
|
||
|
CCString(const char * str);
|
||
|
~CCString();
|
||
|
int toInt();
|
||
|
unsigned int toUInt();
|
||
|
float toFloat();
|
||
|
|
||
|
bool isEmpty();
|
||
|
};
|
||
|
}// namespace cocos2d
|