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

11 lines
130 B
Lua

local M = {}
setmetatable(M,{__index = GameController})
function M:init(name)
GameController.init(self,name)
end
return M