Skip to content
This repository has been archived by the owner on Aug 9, 2020. It is now read-only.
Travis edited this page Jul 8, 2018 · 4 revisions

Creates a button that displays the amount of money the player has.

Example:

local Bags = LibContainer:New('bags', 'MyBags')
Bags:SetPoint('CENTER')
Bags:On('PostCreateContainer', function(Container)
    local Money = Container:AddWidget('Money')
    Money:SetPoint('TOPRIGHT')
end)
Clone this wiki locally