import { _decorator, Component, Node } from 'cc'; import { game_run } from './run/game_run'; import { SdkUtil } from './sdkUtil'; const { ccclass, property } = _decorator; @ccclass('main') export class main extends Component { @property(game_run) g_game:game_run = null; protected start(): void { SdkUtil.init() this.g_game.runAll() } }