123456789101112 |
- import { _decorator, Button, Component, Node } from 'cc';
- const { ccclass, property } = _decorator;
- @ccclass('Layout_Lock')
- export class Layout_Lock extends Component {
- @property(Button)
- Close_Btn: Button;
- @property(Button)
- Ensure_Btn: Button;
- }
|