| 1234567891011121314151617181920 |
- import { _decorator, Component, Node, SpriteFrame } from 'cc';
- const { ccclass, property } = _decorator;
- @ccclass('Layout_Win')
- export class Layout_Win extends Component {
- // 奖励图片数组
- @property([SpriteFrame])
- rewardSprites: SpriteFrame[] = [];
-
- start() {
- }
- update(deltaTime: number) {
- }
- }
|