--- --- Created by 谌建军. --- DateTime: 2017/12/13 17:04 --- local EXPlayerPokerInfoView = import('.EXPlayerPokerInfoView') local EXCardType = import('.EXCardType') local EXCardCheck = import(".CardCheck") local EXPlayerSelfPokerInfoView = { _view = nil, _mainView = nil, _mask_liangpai = nil } local M = EXPlayerSelfPokerInfoView function M.new(view, mainView) setmetatable(M, { __index = EXPlayerPokerInfoView }) local self = setmetatable({}, { __index = M }) self._view = view self._mainView = mainView self.gameCtr = ControllerManager.GetController(GameController) self:init() return self end function M:init() EXPlayerPokerInfoView.init(self) end function M:InitPoker(pokerList, isPlayAni, open) end function M:Clear() EXPlayerPokerInfoView.Clear(self) end return M