OpenRA.OrderFieldsExts.HasField C# (CSharp) Method

HasField() public static method

public static HasField ( this of, OrderFields f ) : bool
of this
f OrderFields
return bool
        public static bool HasField(this OrderFields of, OrderFields f)
        {
            return (of & f) != 0;
        }
OrderFieldsExts