blob: 4acdb6cdad793c7e553cabe5eee083c04720c3d8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include "editor-plugin.hpp"
#include "editor.hpp"
struct PKEPluginInterface pkePluginInterface = {
.OnInit = PkeEditor_Init,
.OnTick = PkeEditor_Tick,
.OnTeardown = PkeEditor_Teardown,
.OnImGuiRender = PkeEditor_RecordImGui,
};
|