/** * Sets the specified bound of a console variable. * * @param convar Handle to the convar. * @param type Type of bound to set, ConVarBound_Lower or ConVarBound_Upper * @param set If set to true, convar will use specified bound. If false, bound will be removed. * @param value Floating point value to use as the specified bound. * @error Invalid or corrupt Handle. */ public static void SetConVarBounds(Handle convar, ConVarBounds type, bool set, float value = 0.0f) { throw new NotImplementedException(); }
// Sets the specified bound of a console variable. // // @param type Type of bound to set, ConVarBound_Lower or ConVarBound_Upper // @param set If set to true, convar will use specified bound. If false, bound will be removed. // @param value Floating point value to use as the specified bound. public void SetBounds(ConVarBounds type, bool set, float value = 0.0f) { throw new NotImplementedException(); }
/** * Retrieves the specified bound of a console variable. * * @param convar Handle to the convar. * @param type Type of bound to retrieve, ConVarBound_Lower or ConVarBound_Upper. * @param value By-reference cell to store the specified floating point bound value. * @return True if the convar has the specified bound set, false otherwise. * @error Invalid or corrupt Handle. */ public static bool GetConVarBounds(Handle convar, ConVarBounds type, out float value) { throw new NotImplementedException(); }
// Retrieves the specified bound of a console variable. // // @param type Type of bound to retrieve, ConVarBound_Lower or ConVarBound_Upper. // @param value By-reference cell to store the specified floating point bound value. // @return True if the convar has the specified bound set, false otherwise. public bool GetBounds(ConVarBounds type, out float value) { throw new NotImplementedException(); }