19 lines
284 B
Lua
19 lines
284 B
Lua
|
--新的命格管理
|
||
|
PotencyManager = {}
|
||
|
local this = PotencyManager
|
||
|
local giftConfig=ConfigManager.GetConfig(ConfigName.PotentialNewConfig)
|
||
|
local equipConfig=ConfigManager.GetConfig(ConfigName.EquipConfig)
|
||
|
function this.Initialize()
|
||
|
this.allEquipData={}
|
||
|
end
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
return this
|