unit45.ts 499 B

12345678910111213141516171819202122
  1. import { _decorator } from 'cc';
  2. import { BaseZhaocha } from '../../hall/script/BaseZhaocha';
  3. const { ccclass, property } = _decorator;
  4. @ccclass('unit45')
  5. export class unit45 extends BaseZhaocha {
  6. override answerName: Array<string> = [
  7. "精致帆布",
  8. "热水器",
  9. "保险杠",
  10. "轮胎",
  11. "拿铁",
  12. "提拉米苏",
  13. "烧烤架",
  14. "水龙头",
  15. "沙发",
  16. "烤箱",
  17. "膨化食品",
  18. "微波炉",
  19. ]
  20. }