import ViewObject from "../../main/ViewObject";

/**
 * 控制设置
 */
const {ccclass, property} = cc._decorator;

@ccclass
export default class TapController extends ViewObject {

    @property(cc.Label)
    label: cc.Label = null;

  
    onLoad () {

    }

    start () {

    }

    // update (dt) {}
}