19 lines
457 B
Lua
19 lines
457 B
Lua
---@diagnostic disable: missing-return, lowercase-global
|
|
---@meta
|
|
|
|
---@alias continentIndex
|
|
---| -1 - Cosmic map
|
|
---| 0 - Entire Azeroth map
|
|
---| 1 - Kalimdor
|
|
---| 2 - Eastern Kingdoms
|
|
---| 3 - Outland
|
|
---| 4 - Northrend
|
|
---| 5 - The Maelstrom
|
|
---| 6 - Pandaria
|
|
---| 7 - Draenor
|
|
|
|
---@param continentIndex continentIndex
|
|
---@param zoneIndex number
|
|
---Sets the world map to show a specific zone or continent
|
|
function SetMapZoom(continentIndex, zoneIndex) end
|