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