Files
BusyRabbit/Content/Lua/HomeLand/UI/Hearth/WorkTop/WorkTopPanel.lua
2025-08-01 00:33:26 +08:00

17 lines
394 B
Lua

local WidgetUtils = require("Utils.UI.WidgetUtils")
local WorkTopPanel = {}
function WorkTopPanel:OnInitialized()
self.BtnBack.OnClicked:Add(function()
WidgetUtils.Hide(self, "HearthWorkTop")
end)
self.BtnNext.OnClicked:Add(function()
WidgetUtils.Hide(self, "HearthWorkTop")
end)
end
function WorkTopPanel:setup_task()
end
return Class(nil, nil, WorkTopPanel)