dezhou_client/lua_probject/base_project/Game/View/LobbyNew/LobbyGame.lua

10 lines
211 B
Lua
Raw Permalink Normal View History

2025-12-17 21:08:27 +08:00
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