12345678910111213141516171819202122 |
- import { _decorator } from 'cc';
- import { BaseZhaocha } from '../../hall/script/BaseZhaocha';
- const { ccclass, property } = _decorator;
- @ccclass('unit46')
- export class unit46 extends BaseZhaocha {
- override answerName: Array<string> = [
- "坦克",
- "无人机",
- "步枪",
- "电子琴",
- "架子鼓",
- "电吉他",
- "铝制楼梯",
- "麦克风",
- "支架",
- "电线",
- "音响",
- "军事雷达",
- ]
- }
|