HighValueUsers.ts 359 B

123456789101112131415161718192021222324252627
  1. import { _decorator, Component, Node } from 'cc';
  2. import VMParent from 'db://oops-framework/libs/model-view/VMParent';
  3. const { ccclass, property } = _decorator;
  4. @ccclass('HighValueUsers')
  5. export class HighValueUsers extends VMParent {
  6. data: any = {
  7. }
  8. start() {
  9. this.setButton();
  10. }
  11. update(deltaTime: number) {
  12. }
  13. }