mirror of https://github.com/axmolengine/axmol.git
11 lines
223 B
C++
11 lines
223 B
C++
|
#include "HitTestScene.h"
|
||
|
|
||
|
USING_NS_CC;
|
||
|
|
||
|
void HitTestScene::continueInit()
|
||
|
{
|
||
|
UIPackage::addPackage("UI/HitTest");
|
||
|
|
||
|
_view = UIPackage::createObject("HitTest", "Main")->as<GComponent>();
|
||
|
_groot->addChild(_view);
|
||
|
}
|