mirror of https://github.com/axmolengine/axmol.git
18 lines
265 B
C++
18 lines
265 B
C++
|
#include "testBasic.h"
|
|||
|
|
|||
|
TestLayer::TestLayer()
|
|||
|
{
|
|||
|
/**
|
|||
|
@todo <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ڿ<EFBFBD><EFBFBD>Ƶ<EFBFBD>ǰ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>в<EFBFBD><EFBFBD>ԵIJ˵<EFBFBD>
|
|||
|
*/
|
|||
|
}
|
|||
|
|
|||
|
TestScene::TestScene()
|
|||
|
{
|
|||
|
CCLayer* pLayer = new TestLayer();
|
|||
|
pLayer->autorelease();
|
|||
|
pLayer->retain();
|
|||
|
|
|||
|
addChild(pLayer);
|
|||
|
}
|