Files
BusyRabbit/Content/Lua/HomeLand/UI/HomeLandMainUI.lua

11 lines
274 B
Lua
Raw Normal View History

2025-07-12 13:07:01 +08:00
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)