You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- ---
- -- ================================================================
- -- 文件名: IGameOverAward.lua
- -- 描述: 排名赛抽奖接口
- -- 版权: Copyright © 2016-2019 公司名称 版权所有
- -- 作者: Administrator
- -- 创建日期: 2019-10-22
- -- 更新日期: 2019-10-22
- -- 备注:
- -- ================================================================
- --
- local IGameOverAward = {}
-
- IGameOverAward.chouJiangData = nil
-
- function IGameOverAward.setAwardData(data)
- IGameOverAward.chouJiangData = data
- end
-
- function IGameOverAward.showAwardView()
- if not IGameOverAward.chouJiangData then
- return
- end
- local view = import("luaScript.Views.Club.Match.ClubMatchChouJiang"):new(IGameOverAward.chouJiangData)
- view:setAnchorPoint(cc.p(0.5, 0.5))
- app:showWaitDialog(view)
- end
-
-
- return IGameOverAward
|