axmol/tools/tolua++/CCLabelTTF.pkg

11 lines
509 B
Plaintext
Raw Normal View History

2011-06-14 14:31:25 +08:00
2012-02-02 14:26:38 +08:00
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);
2012-02-02 14:26:38 +08:00
};