Files
BusyRabbit/Content/Lua/HomeLand/UI/HomeLandMainUI.lua
2025-07-12 13:07:01 +08:00

11 lines
274 B
Lua

local GameplayStatics = import("GameplayStatics")
local HomeLandMainUI = {}
function HomeLandMainUI:Construct()
self.Gateway.OnClicked:Add(function()
GameplayStatics.OpenLevel(self, "FalconPlain", false, "")
end)
end
return Class(nil, nil, HomeLandMainUI)