Example #1
0
 public static bool HasAnyFlag(this VehicleSeatFlags flags, VehicleSeatFlags otherFlags)
 {
     return((flags & otherFlags) != 0);
 }
Example #2
0
		public static bool HasAnyFlag(this VehicleSeatFlags flags, VehicleSeatFlags otherFlags)
		{
			return (flags & otherFlags) != 0;
		}
Example #3
0
 public bool HasFlag(VehicleSeatFlags flag)
 {
     return(Flags.HasAnyFlag((int)flag));
 }