mirror of
https://github.com/blanking003/cx-cocos.git
synced 2024-12-26 11:49:01 +00:00
14 lines
222 B
TypeScript
14 lines
222 B
TypeScript
|
|
||
|
import {_decorator, Component, setDisplayStats} from 'cc';
|
||
|
const {ccclass} = _decorator;
|
||
|
|
||
|
@ccclass('cxui.MainScene')
|
||
|
class CxuiMainScene extends Component
|
||
|
{
|
||
|
onLoad ()
|
||
|
{
|
||
|
setDisplayStats(false);
|
||
|
cx.init(this);
|
||
|
}
|
||
|
}
|