Exemplo n.º 1
0
 public static bool HasAnyFlag(this VehicleSeatFlagsB flags, VehicleSeatFlagsB otherFlags)
 {
     return((flags & otherFlags) != 0);
 }
Exemplo n.º 2
0
		public static bool HasAnyFlag(this VehicleSeatFlagsB flags, VehicleSeatFlagsB otherFlags)
		{
			return (flags & otherFlags) != 0;
		}
Exemplo n.º 3
0
 public bool HasFlag(VehicleSeatFlagsB flag)
 {
     return(FlagsB.HasAnyFlag((int)flag));
 }