diff options
Diffstat (limited to 'editor/editor-plugin.cpp')
| -rw-r--r-- | editor/editor-plugin.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/editor/editor-plugin.cpp b/editor/editor-plugin.cpp new file mode 100644 index 0000000..4acdb6c --- /dev/null +++ b/editor/editor-plugin.cpp @@ -0,0 +1,10 @@ + +#include "editor-plugin.hpp" +#include "editor.hpp" + +struct PKEPluginInterface pkePluginInterface = { + .OnInit = PkeEditor_Init, + .OnTick = PkeEditor_Tick, + .OnTeardown = PkeEditor_Teardown, + .OnImGuiRender = PkeEditor_RecordImGui, +}; |
