12345678910111213141516171819202122 |
- import { _decorator } from 'cc';
- import { BaseZhaocha } from '../../hall/script/BaseZhaocha';
- const { ccclass, property } = _decorator;
- @ccclass('unit54')
- export class unit54 extends BaseZhaocha {
- override answerName: Array<string> = [
- "手表",
- "摩托",
- "警示牌",
- "薯条",
- "名牌包包",
- "麦克风",
- "扑克牌",
- "墨镜",
- "烧烤架",
- "信号塔",
- "麻将桌",
- "蝴蝶结",
- ]
- }
|