dezhou_client/lua_probject/main_project/main/zipai/ZPGameController.lua

11 lines
130 B
Lua
Raw Permalink Normal View History

2025-12-17 21:08:27 +08:00
local M = {}
setmetatable(M,{__index = GameController})
function M:init(name)
GameController.init(self,name)
end
return M