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.
37 lines
942 B
37 lines
942 B
using System.Collections; |
|
using System.Collections.Generic; |
|
using UnityEngine; |
|
|
|
public class FloorData |
|
{ |
|
//前缀 |
|
public string Prefix { get; set; } |
|
//最高层 |
|
public int Highest { get; set; } |
|
//最底层 |
|
public int Lowest { get; set; } |
|
//楼层 |
|
public List<FloorButton> Floors { get; set; } |
|
|
|
} |
|
public class FloorButton |
|
{ |
|
//按钮名称 |
|
public string ButtonName { get; set; } |
|
//楼层名称 |
|
public string FloorName { get; set; } |
|
//该层是否为避难层 |
|
public bool BNC { get; set; } |
|
//该层有无防火分区 |
|
public bool FHFQ { get; set; } |
|
//该层有无防火门 |
|
public bool FM { get; set; } |
|
//该层有无防火卷帘 |
|
public bool FHJL { get; set; } |
|
//该层有无室内消火栓 |
|
public bool SNXHS { get; set; } |
|
//该层有无消控室 |
|
public bool XKS { get; set; } |
|
//该层有无泵房或水箱 |
|
public bool BFSX { get; set; } |
|
}
|
|
|