yunque9/lua_probject/extend_project/extend/zipai/fanpaofa/main/ZPGameController.lua

11 lines
130 B
Lua
Raw Normal View History

2025-05-25 11:35:02 +08:00
local M = {}
setmetatable(M,{__index = GameController})
function M:init(name)
GameController.init(self,name)
end
return M