27 lines
356 B
Lua
27 lines
356 B
Lua
----- 御剑行竞猜 -----
|
|
local this = {}
|
|
|
|
function this:InitComponent(gameObject)
|
|
self.spLoader = SpriteLoader.New()
|
|
end
|
|
|
|
function this:BindEvent()
|
|
end
|
|
|
|
function this:AddListener()
|
|
end
|
|
|
|
function this:RemoveListener()
|
|
end
|
|
|
|
function this:OnShow()
|
|
end
|
|
|
|
function this:OnClose()
|
|
end
|
|
|
|
function this:OnDestroy()
|
|
self.spLoader:Destroy()
|
|
end
|
|
|
|
return this |