12345678910111213141516171819202122 |
- import { _decorator } from 'cc';
- import { BaseZhaocha } from '../../hall/script/BaseZhaocha';
- const { ccclass, property } = _decorator;
- @ccclass('unit47')
- export class unit47 extends BaseZhaocha {
- override answerName: Array<string> = [
- "炸弹",
- "直升机",
- "小车",
- "油桶",
- "汽油桶",
- "棒棒糖",
- "奶瓶",
- "光剑",
- "摩托车",
- "水壶",
- "帆布鞋",
- "军用头盔",
- ]
- }
|