12345678910111213141516 |
- ---@class KLQuintonInvasionRankItemView:UIKmlLuaViewBase
- ---@field pointCount UIKmlLuaControl
- ---@field name UIKmlLuaControl
- ---@field numberIcon UIKmlLuaControl
- ---@field unionName UIKmlLuaControl
- local KLQuintonInvasionRankItemView = {}
- setmetatable(KLQuintonInvasionRankItemView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Activity/Item/KLQuintonInvasionRank/KLQuintonInvasionRankItemKml'
- KLQuintonInvasionRankItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLQuintonInvasionRankItemView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLQuintonInvasionRankItemView.content)
- end
- return KLQuintonInvasionRankItemView
|