yunque9/lua_probject/extend_project/extend/zipai/runbeard/main/ZPPlayBackView.lua

14 lines
268 B
Lua
Raw Normal View History

2025-05-24 14:29:14 +08:00
local ZPTableBG = import('.ZPTableBG')
local M = {}
setmetatable(M, {__index = PlayBackView})
function M:InitView(url)
PlayBackView.InitView(self, url)
local _view = self._view
ZPTableBG.LoadTableBG(1, self._room.game_id, self._root_view)
end
return M