unit52.ts 508 B

12345678910111213141516171819202122
  1. import { _decorator } from 'cc';
  2. import { BaseZhaocha } from '../../hall/script/BaseZhaocha';
  3. const { ccclass, property } = _decorator;
  4. @ccclass('unit52')
  5. export class unit52 extends BaseZhaocha {
  6. override answerName: Array<string> = [
  7. "报纸",
  8. "安全标识",
  9. "瓶装果汁",
  10. "电磁炉",
  11. "不锈钢锅",
  12. "蓝牙耳机",
  13. "外卖餐盒",
  14. "打火机",
  15. "火腿肠",
  16. "插座",
  17. "手机",
  18. "车钥匙",
  19. ]
  20. }