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)