Пример #1
0
 ///<summary>Checks if the ID is a fashion pod</summary>
 public static bool IsFashionPod(Gadget.Id id) => GadgetRegistry.IsTypeValid(id, GadgetType.FASHION_POD);
Пример #2
0
 ///<summary>Checks if the ID is a drone</summary>
 public static bool IsDrone(Gadget.Id id) => GadgetRegistry.IsTypeValid(id, GadgetType.DRONE);
Пример #3
0
 ///<summary>Checks if the ID is a lamp</summary>
 public static bool IsLamp(Gadget.Id id) => GadgetRegistry.IsTypeValid(id, GadgetType.LAMP);
Пример #4
0
 ///<summary>Checks if the ID is misc</summary>
 public static bool IsMisc(Gadget.Id id) => GadgetRegistry.IsTypeValid(id, GadgetType.MISC);
Пример #5
0
 ///<summary>Checks if the ID is an echo net</summary>
 public static bool IsEchoNet(Gadget.Id id) => GadgetRegistry.IsTypeValid(id, GadgetType.ECHO_NET);
Пример #6
0
 ///<summary>Checks if the ID is a teleporter</summary>
 public static bool IsTeleporter(Gadget.Id id) => GadgetRegistry.IsTypeValid(id, GadgetType.TELEPORTER);
Пример #7
0
 ///<summary>Checks if the ID is a warp depot</summary>
 public static bool IsWarpDepot(Gadget.Id id) => GadgetRegistry.IsTypeValid(id, GadgetType.WARP_DEPOT);
Пример #8
0
 //+ VERIFICATION
 ///<summary>Checks if the ID is an extractor</summary>
 public static bool IsExtractor(Gadget.Id id) => GadgetRegistry.IsTypeValid(id, GadgetType.EXTRACTOR);
Пример #9
0
 ///<summary>Checks if the ID is a ranch tech</summary>
 public static bool IsRanchTech(Gadget.Id id) => GadgetRegistry.IsTypeValid(id, GadgetType.RANCH_TECH);
Пример #10
0
 ///<summary>Checks if the ID is a portable device</summary>
 public static bool IsPortable(Gadget.Id id) => GadgetRegistry.IsTypeValid(id, GadgetType.PORTABLE);
Пример #11
0
 ///<summary>Checks if the ID is a decoration</summary>
 public static bool IsDeco(Gadget.Id id) => GadgetRegistry.IsTypeValid(id, GadgetType.DECO);
Пример #12
0
 ///<summary>Checks if the ID is a snare</summary>
 public static bool IsSnare(Gadget.Id id) => GadgetRegistry.IsTypeValid(id, GadgetType.SNARE);