GuildTipsView.ts 508 B

1234567891011121314151617181920212223
  1. /*
  2. * @Author: mojunshou 1637302775@qq.com
  3. * @Date: 2025-04-07 17:49:55
  4. * @LastEditors: mojunshou 1637302775@qq.com
  5. * @LastEditTime: 2025-04-09 18:14:07
  6. * @Description:
  7. */
  8. import { _decorator, Component, Node } from 'cc';
  9. import { GameComponent } from 'db://oops-framework/module/common/GameComponent';
  10. const { ccclass, property } = _decorator;
  11. //引导提示
  12. @ccclass('GuildTipsView')
  13. export class GuildTipsView extends GameComponent {
  14. start() {
  15. }
  16. update(deltaTime: number) {
  17. }
  18. }