/* * @Author: mojunshou 1637302775@qq.com * @Date: 2025-04-07 17:49:55 * @LastEditors: mojunshou 1637302775@qq.com * @LastEditTime: 2025-04-09 18:14:07 * @Description: */ import { _decorator, Component, Node } from 'cc'; import { GameComponent } from 'db://oops-framework/module/common/GameComponent'; const { ccclass, property } = _decorator; //引导提示 @ccclass('GuildTipsView') export class GuildTipsView extends GameComponent { start() { } update(deltaTime: number) { } }