Layout_Lock.ts 265 B

123456789101112
  1. import { _decorator, Button, Component, Node } from 'cc';
  2. const { ccclass, property } = _decorator;
  3. @ccclass('Layout_Lock')
  4. export class Layout_Lock extends Component {
  5. @property(Button)
  6. Close_Btn: Button;
  7. @property(Button)
  8. Ensure_Btn: Button;
  9. }