12345678910111213141516171819202122 |
- import { _decorator } from 'cc';
- import { BaseZhaocha } from '../../hall/script/BaseZhaocha';
- const { ccclass, property } = _decorator;
- @ccclass('unit67')
- export class unit67 extends BaseZhaocha {
- override answerName: Array<string> = [
- "消防栓",
- "浴缸",
- "餐车",
- "摩托头盔",
- "现代服装",
- "电动车",
- "精装花束",
- "路灯",
- "塑料雨棚",
- "飞机",
- "手机",
- "鸡冠头",
- ]
- }
|