changhong/lua_probject/main_project/main/majiang/MJGameController.lua

13 lines
129 B
Lua
Raw 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