1234567891011121314151617181920212223 |
- ---@class KLOpenServerAthleticsPersonChallengeItemView:UIKmlLuaViewBase
- ---@field UIPersonChallengeTemplate UIKmlLuaControl
- ---@field PersonCount UIKmlLuaControl
- ---@field PersonItemList UIKmlLuaControl
- ---@field layout36 UIKmlLuaControl
- ---@field PersonLimitAward UIKmlLuaControl
- ---@field EndIcon UIKmlLuaControl
- ---@field PersonLimitTime UIKmlLuaControl
- ---@field BtnGo UIKmlLuaControl
- ---@field jindu_count UIKmlLuaControl
- ---@field Red UIKmlLuaControl
- ---@field Finished UIKmlLuaControl
- local KLOpenServerAthleticsPersonChallengeItemView = {}
- setmetatable(KLOpenServerAthleticsPersonChallengeItemView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/OpenServerAthletics/Item/KLOpenServerAthleticsPersonChallenge/KLOpenServerAthleticsPersonChallengeItemKml'
- KLOpenServerAthleticsPersonChallengeItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLOpenServerAthleticsPersonChallengeItemView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLOpenServerAthleticsPersonChallengeItemView.content)
- end
- return KLOpenServerAthleticsPersonChallengeItemView
|