mirror of
https://github.com/blanking003/cx-cocos.git
synced 2024-12-25 19:29:02 +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);
|
|
}
|
|
}
|