123456789101112131415161718192021222324 |
- import { _decorator, Component } from 'cc';
- const { ccclass, property } = _decorator;
- @ccclass('GameMain')
- export class GameMain extends Component {
-
- start() {
-
- }
- /**
- * 初始化逻辑
- * 每次GameManager.StartGame()时都会调用
- */
- initUI() {
- }
- update(deltaTime: number) {
- }
- }
|