12 lines
356 B
Lua
12 lines
356 B
Lua
---@diagnostic disable: missing-return, lowercase-global
|
|
---@meta
|
|
|
|
---@alias bindingSet
|
|
---| 0 - Default key bindings
|
|
---| 1 - Account-wide key bindings
|
|
---| 2 - Character-specific key bindings
|
|
|
|
---@param set bindingSet
|
|
---Loads a set of key bindings. The UPDATE_BINDINGS event fires when the new bindings have taken effect.
|
|
function LoadBindings(set) end
|