14 lines
625 B
Lua
14 lines
625 B
Lua
---@diagnostic disable: missing-return, lowercase-global
|
|
---@meta
|
|
|
|
---@alias eventType
|
|
---| 1 Raid dungeon
|
|
---| 2 Five-player dungeon
|
|
|
|
---@param eventType eventType
|
|
---@param expansion number Expansion to which the instance belongs; localized names can be found in the constants EXPANSION_NAME0, EXPANSION_NAME1, etc. (number)
|
|
---@return string name
|
|
---@return string icon #Unique part of the path to the instance's icon texture; for the full path, prepend with "Interface\LFGFrame\LFGIcon-"
|
|
---Returns a list of instance names and icons for dungeon or raid events
|
|
function CalendarEventGetTextures(eventType, expansion) end
|