12345678910111213141516171819202122 |
- import { _decorator } from 'cc';
- import { BaseZhaocha } from '../../hall/script/BaseZhaocha';
- const { ccclass, property } = _decorator;
- @ccclass('unit61')
- export class unit61 extends BaseZhaocha {
- override answerName: Array<string> = [
- "火焰刀",
- "电灯",
- "西装",
- "拳套",
- "皮腰带",
- "电子秤",
- "手枪",
- "小广告",
- "注射器",
- "绞肉机",
- "现代招牌",
- "冰柜",
- ]
- }
|