33 lines
401 B
Lua
33 lines
401 B
Lua
----- 神将置换 -----
|
|
local this = {}
|
|
local sortingOrder=0
|
|
|
|
function this:InitComponent(gameObject)
|
|
|
|
end
|
|
|
|
function this:BindEvent()
|
|
|
|
end
|
|
|
|
function this:AddListener()
|
|
end
|
|
|
|
function this:RemoveListener()
|
|
end
|
|
|
|
function this:OnSortingOrderChange(_sortingOrder)
|
|
sortingOrder = _sortingOrder
|
|
end
|
|
|
|
function this:OnShow(...)
|
|
|
|
end
|
|
|
|
function this:OnClose()
|
|
end
|
|
|
|
function this:OnDestroy()
|
|
end
|
|
|
|
return this |