DaFuWeng/assets/Script/StartGameRoot.ts

18 lines
245 B
TypeScript

import { _decorator, Component, Node } from 'cc';
const { ccclass, property } = _decorator;
@ccclass('StartGameRoot')
export class StartGameRoot extends Component {
start() {
}
update(deltaTime: number) {
}
}