15 lines
140 B
Lua
15 lines
140 B
Lua
|
WorldArenaManager = {}
|
||
|
local this = WorldArenaManager
|
||
|
|
||
|
|
||
|
|
||
|
function this.Initialize()
|
||
|
this.rank=0
|
||
|
this.star=0
|
||
|
|
||
|
|
||
|
end
|
||
|
|
||
|
|
||
|
|
||
|
return this
|