12345678910111213141516171819202122 |
- import { _decorator } from 'cc';
- import { BaseZhaocha } from '../../hall/script/BaseZhaocha';
- const { ccclass, property } = _decorator;
- @ccclass('unit29')
- export class unit29 extends BaseZhaocha {
- override answerName: Array<string> = [
- "塑料拖鞋",
- "现代铁桌",
- "露营伞",
- "吉他",
- "应急灯",
- "塑料桶",
- "钢琴",
- "红酒",
- "电灯",
- "喷绘旗",
- "玻璃瓶",
- "名贵花束",
- ]
- }
|