FFACETools.FFACE.IsSet C# (CSharp) Method

IsSet() static private method

static private IsSet ( LineSettings value, LineSettings bit ) : bool
value LineSettings
bit LineSettings
return bool
        internal static bool IsSet(LineSettings value, LineSettings bit)
        {
            if (value == bit)
                return true;
            return (((UInt32)value & (UInt32)bit) != 0);
        }

Same methods

FFACE::IsSet ( InventoryType value, InventoryType bit ) : bool
FFACE::IsSet ( UInt32 value, UInt32 bit ) : bool
FFACE