12345678910111213141516171819202122 |
- import { _decorator } from 'cc';
- import { BaseZhaocha } from '../../hall/script/BaseZhaocha';
- const { ccclass, property } = _decorator;
- @ccclass('unit41')
- export class unit41 extends BaseZhaocha {
- override answerName: Array<string> = [
- "机器人",
- "天线",
- "UFO",
- "墨镜",
- "F1赛车",
- "警告牌",
- "魔法书",
- "西瓜",
- "运动鞋",
- "背包",
- "囚服",
- "鲲",
- ]
- }
|