1234567891011121314151617181920212223242526272829303132333435363738394041 |
- import ViewObject from "../../main/ViewObject";
- import FqPay from "../../pay/FqPay";
- import PayShopItem from "./PayShopItem";
- const {ccclass, property} = cc._decorator;
- @ccclass
- export default class PayShopView extends ViewObject {
- @property(cc.Node)
- mContent: cc.Node = null;
- @property(cc.Prefab)
- mPayItem: cc.Prefab = null;
- public init(){
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- }
- }
|