10 lines
214 B
Lua
10 lines
214 B
Lua
|
|
local LobbyMatch = {}
|
||
|
|
local M = LobbyMatch
|
||
|
|
|
||
|
|
function LobbyMatch.new(path, transform)
|
||
|
|
local self = setmetatable({}, { __index = M })
|
||
|
|
self.view = UIManager.GetGo(path, transform)
|
||
|
|
return self
|
||
|
|
end
|
||
|
|
|
||
|
|
return M
|