axmol/tests/cpp-tests/Classes/BugsTest/Bug-350.cpp

21 lines
436 B
C++
Raw Normal View History

2011-07-08 11:22:35 +08:00
//
// Bug-350
// http://code.google.com/p/cocos2d-iphone/issues/detail?id=350
//
#include "Bug-350.h"
bool Bug350Layer::init()
{
if (BugsTestBaseLayer::init())
{
auto size = Director::getInstance()->getWinSize();
auto background = Sprite::create("Hello.png");
background->setPosition(Vector2(size.width/2, size.height/2));
addChild(background);
2011-07-08 11:22:35 +08:00
return true;
}
2011-07-08 11:22:35 +08:00
return false;
2011-07-08 11:22:35 +08:00
}