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.
|
|
|
|
-- ------------------------------------------------------------------------------ --
|
|
|
|
|
-- TradeSkillMaster --
|
|
|
|
|
-- https://tradeskillmaster.com --
|
|
|
|
|
-- All Rights Reserved - Detailed license information included with addon. --
|
|
|
|
|
-- ------------------------------------------------------------------------------ --
|
|
|
|
|
|
|
|
|
|
local TSM = select(2, ...) ---@type TSM
|
|
|
|
|
local ItemTooltip = TSM.Init("Service.ItemTooltip") ---@class Service.ItemTooltip
|
|
|
|
|
local Builder = TSM.Include("Service.ItemTooltipClasses.Builder")
|
|
|
|
|
local Wrapper = TSM.Include("Service.ItemTooltipClasses.Wrapper")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-- ============================================================================
|
|
|
|
|
-- Module Functions
|
|
|
|
|
-- ============================================================================
|
|
|
|
|
|
|
|
|
|
function ItemTooltip.CreateBuilder()
|
|
|
|
|
return Builder.Create()
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
function ItemTooltip.SetWrapperPopulateFunction(func)
|
|
|
|
|
Wrapper.SetPopulateFunction(func)
|
|
|
|
|
end
|