Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- bool HelloWorld::init()
- {
- if (!Layer::init())
- {
- return false;
- }
- auto label = Label::createWithTTF("Hello World"
- ,"Futura Extra Bold.ttf", 34);
- label->setPosition(Point(240, 160));
- this->addChild(label);
- return true;
- }
Advertisement
Add Comment
Please, Sign In to add comment