13 lines
235 B
Lua
13 lines
235 B
Lua
|
local Prefix = "Script.Global.WidgetManager."
|
||
|
|
||
|
-- 工具集
|
||
|
require(Prefix .. 'WidgetConfig')
|
||
|
if not UE_SERVER then
|
||
|
require(Prefix .. 'WidgetManager')
|
||
|
end
|
||
|
|
||
|
function UnableWidgetManager()
|
||
|
WidgetConfig = nil;
|
||
|
WidgetManager = nil;
|
||
|
end
|