123456789101112131415161718192021 |
- import { _decorator, Button, Component, Label, Node, ProgressBar } from 'cc';
- import { Container_Manager } from '../../game/Container_Manager';
- const { ccclass, property } = _decorator;
- @ccclass('Layout_Fail')
- export class Layout_Fail extends Component {
- @property(ProgressBar)
- progressBar: ProgressBar;
- @property(Label)
- Num:Label;
- @property(Button)
- Relife_Btn:Button;
- @property(Button)
- ReturnHall_Btn:Button;
- Container:Container_Manager;
- }
|