12345678910111213141516171819202122 |
- import { _decorator } from 'cc';
- import { BaseZhaocha } from '../../hall/script/BaseZhaocha';
- const { ccclass, property } = _decorator;
- @ccclass('unit45')
- export class unit45 extends BaseZhaocha {
- override answerName: Array<string> = [
- "精致帆布",
- "热水器",
- "保险杠",
- "轮胎",
- "拿铁",
- "提拉米苏",
- "烧烤架",
- "水龙头",
- "沙发",
- "烤箱",
- "膨化食品",
- "微波炉",
- ]
- }
|