Files
BusyRabbit/Content/Lua/HomeLand/UI/Hearth/HearthMain.lua

11 lines
247 B
Lua
Raw Normal View History

2025-07-13 15:47:08 +08:00
local WidgetUtils = require("Utils.UI.WidgetUtils")
local HearthMain = {}
function HearthMain:OnInitialized()
self.BtnBack.OnClicked:Add(function()
WidgetUtils.Hide(self, "HearthMain")
end)
end
return Class(nil, nil, HearthMain)