12345678910111213141516171819202122 |
- import { _decorator } from 'cc';
- import { BaseZhaocha } from '../../hall/script/BaseZhaocha';
- const { ccclass, property } = _decorator;
- @ccclass('unit63')
- export class unit63 extends BaseZhaocha {
- override answerName: Array<string> = [
- "沙发",
- "西装男人",
- "大金链子",
- "现代美女",
- "摩托车",
- "垃圾桶",
- "葡萄果汁",
- "手机",
- "奶茶",
- "贝雷帽",
- "狙击枪",
- "卡皮巴拉",
- ]
- }
|