2025-06-04 05:02:57 +08:00

13 lines
286 B
Plaintext

autoImport("BaseItemCell");
EquipItemCell = class("EquipItemCell", BaseItemCell);
function EquipItemCell:Init()
self:FindObjs();
self:AddCellClickEvent();
self:AddCellDoubleClickEvt();
end
function EquipItemCell:SetData(data)
self.data = data;
self.super.SetData(self, data);
end