Layout_Hall.ts 335 B

1234567891011121314151617
  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. }