public static int GetPortCount(this KMBombInfo bombInfo, KnownPortType portType)
 {
     return(bombInfo.GetPortCount(portType.ToString()));
 }
 public static bool IsPortPresent(this KMBombInfo bombInfo, KnownPortType portType)
 {
     return(bombInfo.IsPortPresent(portType.ToString()));
 }
Пример #3
0
 public static bool IsDuplicatePortPresent(this KMBombInfo bombInfo, KnownPortType port)
 {
     return(IsDuplicatePortPresent(bombInfo, port.ToString()));
 }