You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
691 B
24 lines
691 B
|
1 year ago
|
|
||
|
|
local addonId, platerInternal = ...
|
||
|
|
|
||
|
|
local Plater = Plater
|
||
|
|
---@type detailsframework
|
||
|
|
local DF = DetailsFramework
|
||
|
|
local _
|
||
|
|
|
||
|
|
--run after all Plater Nameplates files has been loaded
|
||
|
|
|
||
|
|
--store a boolean informing if a portion of the addon that is loaded on demand has already been loaded
|
||
|
|
---@type table<string, boolean>
|
||
|
|
platerInternal.LoadOnDemand_IsLoaded = {
|
||
|
|
CastOptions = false,
|
||
|
|
SearchOptions = false,
|
||
|
|
AdvancedOptions = false,
|
||
|
|
}
|
||
|
|
|
||
|
|
---@type table<string, function>
|
||
|
|
platerInternal.LoadOnDemand_LoadFunc = {
|
||
|
|
CastOptions = platerInternal.CreateCastBarOptions,
|
||
|
|
SearchOptions = platerInternal.CreateSearchOptions,
|
||
|
|
AdvancedOptions = platerInternal.CreateAdvancedOptions,
|
||
|
|
}
|