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

11 lines
130 B
Lua
Raw Permalink Normal View History

2025-05-24 14:29:14 +08:00
local M = {}
setmetatable(M,{__index = GameController})
function M:init(name)
GameController.init(self,name)
end
return M