diff options
author | chai <chaifix@163.com> | 2021-10-22 09:23:08 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-10-22 09:23:08 +0800 |
commit | 1f18d2afec632aa9361079ca3bcb5a7f2d73db3a (patch) | |
tree | dab695a32735d1f19ae74ea7e7d094371531dde8 /Resources/Libraries | |
parent | 998a13b08c43b0813d1d4d38692ea7f8bd31c936 (diff) |
*misc
Diffstat (limited to 'Resources/Libraries')
-rw-r--r-- | Resources/Libraries/GameLab/Editor/GUI/EditorWindow.lua | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/Resources/Libraries/GameLab/Editor/GUI/EditorWindow.lua b/Resources/Libraries/GameLab/Editor/GUI/EditorWindow.lua index 99d242d..2ec7f95 100644 --- a/Resources/Libraries/GameLab/Editor/GUI/EditorWindow.lua +++ b/Resources/Libraries/GameLab/Editor/GUI/EditorWindow.lua @@ -1,10 +1,18 @@ local EditorWindow = GameLab.Class("EditorWindow", "GameLab.Editor.GUI")
-EditorWindow.Ctor = function(self, ...)
+EditorWindow.Ctor = function(self)
end
-EditorWindow.SetGUIWindow = function(self)
- print("SetGUIwidow")
+EditorWindow.OnGUI = function(self)
+end
+
+EditorWindow.OnUpdate = function(self)
+end
+
+EditorWindow.OnStart = function(self)
+end
+
+EditorWindow.OnStop = function(self)
end
return EditorWindow
\ No newline at end of file |