--- --- Created by 谌建军. --- DateTime: 2017/12/13 11:28 --- local ExProtocol = import(".ExProtocol") local ExGameEvent = import(".ExGameEvent") local CardType = import(".CardType") local ExGameController = {} local M = ExGameController function M.new() setmetatable(M, { __index = GameController }) local self = setmetatable({}, { __index = M }) self:init("跑得快") self.class = "ExGameController" return self end function M:init(name) GameController.init(self, name) self:RegisterEvt() end -- 事件注册 function M:RegisterEvt() end return M