diff options
author | chai <chaifix@163.com> | 2021-11-11 18:27:36 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-11-11 18:27:36 +0800 |
commit | 0e0aa82ab2ebc9f15519cea710a52c5895690152 (patch) | |
tree | 57e91039458549dadb4e904d537be26fe792b855 /Data/Scripts/EditorGUI | |
parent | 36f42b74630d4bca2d1d276d57c4c967d0290380 (diff) |
* rename Editor.GUI to Editor.Window
Diffstat (limited to 'Data/Scripts/EditorGUI')
-rw-r--r-- | Data/Scripts/EditorGUI/EditorWindowManager.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Data/Scripts/EditorGUI/EditorWindowManager.lua b/Data/Scripts/EditorGUI/EditorWindowManager.lua index 693cb9e..27dd16d 100644 --- a/Data/Scripts/EditorGUI/EditorWindowManager.lua +++ b/Data/Scripts/EditorGUI/EditorWindowManager.lua @@ -1,6 +1,6 @@ -local ContainerWindow = require("GameLab.Editor.GUI.ContainerWindow")
-local GUIWindow = require("GameLab.Editor.GUI.GUIWindow")
-local SplitWindow = require("GameLab.Editor.GUI.SplitWindow")
+local ContainerWindow = require("GameLab.Editor.Window.ContainerWindow")
+local GUIWindow = require("GameLab.Editor.Window.GUIWindow")
+local SplitWindow = require("GameLab.Editor.Window.SplitWindow")
local EditorWindowManager = {}
|