27 lines
560 B
Plaintext
27 lines
560 B
Plaintext
local BaseCell = autoImport("BaseCell");
|
|
BaseCDCell = class("BaseCDCell", BaseCell)
|
|
|
|
function BaseCDCell:ctor(obj,cdCtrl)
|
|
self.cdCtrl = cdCtrl
|
|
BaseCDCell.super.ctor(self,obj)
|
|
end
|
|
|
|
function BaseCDCell:SetcdCtl(cdCtrl)
|
|
self.cdCtrl = cdCtrl;
|
|
end
|
|
|
|
function BaseCDCell:GetCD()
|
|
error("沒有複寫BaseCDCell:GetCD()")
|
|
end
|
|
|
|
function BaseCDCell:GetMaxCD()
|
|
error("沒有複寫BaseCDCell:GetMaxCD()")
|
|
end
|
|
|
|
function BaseCDCell:RefreshCD(f)
|
|
error("沒有複寫BaseCDCell:RefreshCD()")
|
|
end
|
|
|
|
function BaseCDCell:ClearCD()
|
|
error("沒有複寫BaseCDCell:ClearCD()")
|
|
end |