17 lines
339 B
Lua
17 lines
339 B
Lua
|
XuanYuanMirrorManager = {};
|
|||
|
local this = XuanYuanMirrorManager
|
|||
|
local levelData = {}
|
|||
|
function this.Initialize()
|
|||
|
|
|||
|
end
|
|||
|
function this.GetMirrorData(_type)
|
|||
|
local dataList={}
|
|||
|
local data={}
|
|||
|
data.state = this.GetState(_type,1)
|
|||
|
table.insert(data)
|
|||
|
return dataList
|
|||
|
end
|
|||
|
function this.GetState(_type,id)
|
|||
|
return -1
|
|||
|
end
|
|||
|
return this
|