12345678910111213141516171819202122 |
- import { _decorator } from 'cc';
- import { BaseZhaocha } from '../../hall/script/BaseZhaocha';
- const { ccclass, property } = _decorator;
- @ccclass('unit51')
- export class unit51 extends BaseZhaocha {
- override answerName: Array<string> = [
- "电灯",
- "现代挂画",
- "空调",
- "手枪",
- "黑丝",
- "运动手环",
- "通风口",
- "挂历",
- "电闸",
- "红牌",
- "麻将桌",
- "望远镜",
- ]
- }
|