VerifyView.ts 494 B

123456789101112131415161718192021
  1. /*
  2. * @Author: mojunshou 1637302775@qq.com
  3. * @Date: 2025-03-21 18:43:41
  4. * @LastEditors: mojunshou 1637302775@qq.com
  5. * @LastEditTime: 2025-03-21 18:44:05
  6. * @Description: 第三方安全验证界面
  7. */
  8. import { _decorator } from 'cc';
  9. import { GameComponent } from "db://oops-framework/module/common/GameComponent";
  10. const { ccclass, property } = _decorator;
  11. /** 显示对象控制 */
  12. @ccclass('VerifyView')
  13. export class VerifyView extends GameComponent {
  14. protected start() {
  15. }
  16. }