ro-table/Asstes/Resources/Script/FrameWork/GUI/cell/RepositoryBagCombineItemCell.txt
2025-06-04 05:02:57 +08:00

15 lines
420 B
Plaintext

autoImport("BaseCombineCell");
RepositoryBagCombineItemCell = class("RepositoryBagCombineItemCell", BaseCombineCell);
autoImport("RepositoryBagCell");
function RepositoryBagCombineItemCell:Init()
self:InitCells(5, "BagItemCell", RepositoryBagCell)
if(self.childCells)then
for i=1,#self.childCells do
self.childCells[i]:UpdateEquipUpgradeTip();
self.childCells[i]:RemoveUnuseObj("upgradeTip");
end
end
end