local LobbyGame = {} local M = LobbyGame function LobbyGame.new(path, transform) local self = setmetatable({}, { __index = M }) self.view = UIManager.GetGo(path, transform) return self end return M