Files
wow_Meta/api/GetCVar.lua
2025-05-04 15:15:00 +02:00

8 lines
401 B
Lua

---@diagnostic disable: missing-return, lowercase-global
---@meta
---@param cvar string
---@return any string
---Returns the value of a configuration variable. Causes an error if the named CVar does not exist. Note that all values are returned as strings: use of tonumber() may be required if using a value in a numeric context. (See also GetCVarBool() for binary values.)
function GetCVar(cvar) end