12345678910111213141516171819202122 |
- import { _decorator } from 'cc';
- import { BaseZhaocha } from '../../hall/script/BaseZhaocha';
- const { ccclass, property } = _decorator;
- @ccclass('unit73')
- export class unit73 extends BaseZhaocha {
- override answerName: Array<string> = [
- "冰茶摊",
- "冰棍",
- "出风口",
- "风扇",
- "电动车",
- "空调外机",
- "麦克风",
- "摩托艇",
- "霓虹灯",
- "燃气灶",
- "手机",
- "头盔",
- ]
- }
|