网演高层钦州
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.
 
 
 

124 lines
2.2 KiB

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public enum FireManSkills
{
None = 0,
/// <summary>
/// 铺设水带
/// </summary>
LayWaterHose = 1,
/// <summary>
/// 放下水带
/// </summary>
LayDownWaterHose,
/// <summary>
/// 收起管线
/// </summary>
PackUpLine,
/// <summary>
/// 拿起水带
/// </summary>
TakeUpWaterLine,
/// <summary>
/// 连接管线
/// </summary>
AssociatedLine,
/// <summary>
/// 铺设救生照明线
/// </summary>
LayLifeSavingFlarePath,
/// <summary>
/// 拿起救生照明线
/// </summary>
TakeUpLifeSavingLine,
/// <summary>
/// 喷水
/// </summary>
SprayWater ,
/// <summary>
/// 喷泡沫
/// </summary>
SprayFoam ,
/// <summary>
/// 破拆
/// </summary>
ForcibleEntry ,
/// <summary>
/// 排烟
/// </summary>
DischargeSmoke ,
/// <summary>
/// 灯光
/// </summary>
Lighting ,
/// <summary>
/// 侦查?
/// </summary>
TagSearchRoom ,
/// <summary>
/// 装备选择
/// </summary>
EquipSelect ,
/// <summary>
/// 救助,下分急救、移动、安抚、引导4个技能
/// </summary>
Save,
/// <summary>
/// 急救
/// </summary>
FristAid,
/// <summary>
/// 移动伤员/被困人员
/// </summary>
Move,
/// <summary>
/// 安抚
/// </summary>
Pacify,
/// <summary>
/// 引导
/// </summary>
Guidance,
/// <summary>
/// 询问知情人
/// </summary>
AskPeople,
/// <summary>
/// 清理危险品
/// </summary>
ClearDangerous ,
/// <summary>
/// 清理杂物堆
/// </summary>
ClearSundries,
/// <summary>
/// 图传
/// </summary>
PictureTransmission,
/// <summary>
/// 安全员
/// </summary>
SafetyOfficer,
/// <summary>
/// 引导员
/// </summary>
Usher,
/// <summary>
/// 水源引导
/// </summary>
WaterGuiding,
/// <summary>
/// 警戒
/// </summary>
GuardAgainst,
/// <summary>
/// 背包
/// </summary>
Backpack,
}
public class FireSkill { }