20 lines
440 B
Lua
20 lines
440 B
Lua
GemManager = {}
|
|
local this = GemManager
|
|
function this.Initialize()
|
|
this.GemList = {
|
|
[1] = {45001,45002,45003},
|
|
[2] = {45004,45005,45006},
|
|
[3] = {45007,45008,45009},
|
|
[4] = {45010,45011,45013},
|
|
[5] = {45021,45022,45023},
|
|
[6] = {45031,45032,45033},
|
|
[7] = {45041,45042,45043},
|
|
[8] = {45051,45052,45053},
|
|
}
|
|
end
|
|
|
|
function this.GetServerData(msg)
|
|
-- body
|
|
end
|
|
|
|
return this |