ADL_Cocos_ChickenGame/assets/script/NewComponent.ts

15 lines
251 B
TypeScript
Raw Normal View History

2024-10-11 18:09:54 +08:00
import { _decorator, Component, Node } from 'cc';
const { ccclass, property } = _decorator;
@ccclass('NewComponent')
export class NewComponent extends Component {
start() {
}
update(deltaTime: number) {
}
}