123456789101112131415161718192021222324 |
- 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 () {
- }
-
- }
|