mirror of https://github.com/axmolengine/axmol.git
10 lines
356 B
Plaintext
10 lines
356 B
Plaintext
|
|
class CCLabelTTF : public CCSprite
|
|
{
|
|
void setString(const char *label);
|
|
const char* getString(void);
|
|
|
|
static CCLabelTTF * labelWithString(const char *label, CCSize dimensions, CCTextAlignment alignment, const char *fontName, float fontSize);
|
|
static CCLabelTTF * labelWithString(const char *label, const char *fontName, float fontSize);
|
|
};
|