public static bool IsDisarm(this IDisable disable, bool hex = true) { if (!hex && disable.IsHex()) { return(false); } return((disable.AppliesUnitState & UnitState.Disarmed) != 0); }
// Token: 0x0600049C RID: 1180 RVA: 0x00004E08 File Offset: 0x00003008 public static bool IsDisarm(this IDisable disable, bool hex = true) { return((hex || !disable.IsHex()) && (disable.AppliesUnitState & UnitState.Disarmed) > (UnitState)0UL); }