12345678910111213141516171819202122 |
- import { _decorator } from 'cc';
- import { BaseZhaocha } from '../../hall/script/BaseZhaocha';
- const { ccclass, property } = _decorator;
- @ccclass('unit52')
- export class unit52 extends BaseZhaocha {
- override answerName: Array<string> = [
- "报纸",
- "安全标识",
- "瓶装果汁",
- "电磁炉",
- "不锈钢锅",
- "蓝牙耳机",
- "外卖餐盒",
- "打火机",
- "火腿肠",
- "插座",
- "手机",
- "车钥匙",
- ]
- }
|