123456789101112131415161718192021222324 |
- import { _decorator, Component, Node } from 'cc';
- import GBaseUI from '../gcommon/GBaseUI';
- import { UIButton } from '../gcommon/UIButton';
- const { ccclass, property } = _decorator;
- @ccclass('jifen_rule_view')
- export class jifen_rule_view extends GBaseUI {
- @property(Node)
- btn_close: Node = null;
- start() {
- UIButton.BindClick(this.btn_close,()=>{
- this.closeUI()
- },this)
- }
- update(deltaTime: number) {
-
- }
- }
|