pubgv3/assets/scripts/UI/UIShop/UIShopOnecell.ts
zhuguoqing ff550d5d6a init
2022-05-22 10:32:02 +08:00

9 lines
315 B
TypeScript

const { ccclass, property } = cc._decorator;
@ccclass
export class UIShopOneCell extends cc.Component {
@property(cc.Label) lab_price: cc.Label = null;
@property(cc.Label) lab_name: cc.Label = null;
@property(cc.Node) itemNode: cc.Node = null;
@property(cc.Node) heroType: cc.Node = null;
}