diff options
author | chai <chaifix@163.com> | 2021-10-17 23:05:01 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-10-17 23:05:01 +0800 |
commit | 7c8c68d79343d04be382334c15a73d079450857c (patch) | |
tree | 9aaacc042f0b7eeb4123c07dcc5f49c14fd8026c /Editor/Scripting/EditorGUI/ContainerWindow.bind.cpp | |
parent | 6e73ca6ada8a41692809dae5db89c8db0675ce1e (diff) |
*misc
Diffstat (limited to 'Editor/Scripting/EditorGUI/ContainerWindow.bind.cpp')
-rw-r--r-- | Editor/Scripting/EditorGUI/ContainerWindow.bind.cpp | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/Editor/Scripting/EditorGUI/ContainerWindow.bind.cpp b/Editor/Scripting/EditorGUI/ContainerWindow.bind.cpp index e69de29..f51b6b4 100644 --- a/Editor/Scripting/EditorGUI/ContainerWindow.bind.cpp +++ b/Editor/Scripting/EditorGUI/ContainerWindow.bind.cpp @@ -0,0 +1,29 @@ +#include "Editor/GUI/EditorWindows.h" + +LUA_BIND_REGISTRY(ContainnerWindow) +{ + LUA_BIND_REGISTER_METHODS(state, + { "SetTitle", _SetTitle }, + { "DoPaint", _DoPaint } + ); +} + +LUA_BIND_POSTPROCESS(ContainnerWindow) +{ +} + +LUA_BIND_IMPL_METHOD(ContainnerWindow, _SetTitle) +{ + LUA_BIND_PREPARE(L, ContainnerWindow); + + + + return 0; +} + +LUA_BIND_IMPL_METHOD(ContainnerWindow, _DoPaint) +{ + LUA_BIND_PREPARE(L, ContainnerWindow); + self->DoPaint(); + return 0; +}
\ No newline at end of file |