Layout_LatticeFull.ts 575 B

123456789101112131415161718192021222324
  1. import { _decorator, Button, Component, Label, Node, Sprite } from 'cc';
  2. const { ccclass, property } = _decorator;
  3. @ccclass('Layout_LatticeFull')
  4. export class Layout_LatticeFull extends Component {
  5. @property(Button)
  6. Close_Btn: Button;
  7. @property(Button)
  8. Eliminate: Button;
  9. @property(Label)
  10. Eliminate_RedPoint_num: Label;
  11. @property(Sprite)
  12. Eliminate_Ad: Sprite;
  13. @property(Button)
  14. Empty: Button;
  15. @property(Label)
  16. Empty_RedPoint_num: Label;
  17. @property(Sprite)
  18. Empty_Ad: Sprite;
  19. @property(Button)
  20. Click: Button;
  21. }