大厅接入

This commit is contained in:
2025-07-12 13:07:01 +08:00
parent 62e0f56c60
commit d2e517b341
29 changed files with 238 additions and 43 deletions

View File

@ -0,0 +1,11 @@
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)