You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
531 B
25 lines
531 B
1 year ago
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
public class Devices
|
||
|
{
|
||
|
public Device XiaoKongShi;
|
||
|
public Device BiNanCeng;
|
||
|
public Device FangHuoFenQu;
|
||
|
public Device FangHuoMen;
|
||
|
public Device FangHuoJuanLian;
|
||
|
public Device AnQuanChuKou;
|
||
|
public Device ShuSanLouTi;
|
||
|
public Device XiaoFangDianTi;
|
||
|
public Device BengFang;
|
||
|
public Device ShiNeiXiaoHuoShuan;
|
||
|
}
|
||
|
|
||
|
|
||
|
public class Device
|
||
|
{
|
||
|
public bool Value { get; set; }
|
||
|
public string Describe { get; set; }
|
||
|
}
|