This commit is contained in:
pan@work
2024-08-09 11:05:52 +08:00
parent 9fed7e0b03
commit 79226c1bd7
7 changed files with 513 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import { _decorator, Component, Node } from 'cc';
const { ccclass, property } = _decorator;
@ccclass('base')
export class base extends Component {
start() {
}
update(deltaTime: number) {
}
}