12345678910111213141516171819202122 |
- import { _decorator } from 'cc';
- import { BaseZhaocha } from '../../hall/script/BaseZhaocha';
- const { ccclass, property } = _decorator;
- @ccclass('unit42')
- export class unit42 extends BaseZhaocha {
- override answerName: Array<string> = [
- "太阳能",
- "月亮",
- "风扇",
- "玩滑板",
- "可乐",
- "手机",
- "墨镜",
- "车牌",
- "塑料凳子",
- "暖气片",
- "麻将",
- "电蚊拍",
- ]
- }
|