Layout_Hall.ts 494 B

1234567891011121314151617181920212223242526
  1. import { _decorator, Button, Component, Node } from 'cc';
  2. const { ccclass, property } = _decorator;
  3. @ccclass('Layout_Hall')
  4. export class Layout_Hall extends Component {
  5. @property(Button)
  6. Start_Btn: Button = null;
  7. @property(Button)
  8. Settings_Btn: Button = null;
  9. @property(Button)
  10. Rank_Btn: Button = null;
  11. @property(Button)
  12. Invite_Btn: Button = null;
  13. @property(Button)
  14. Store_Btn: Button = null;
  15. @property(Button)
  16. Sign_Btn: Button = null;
  17. }