zengine/engine/src/editor/editor.cpp

15 lines
183 B
C++
Raw Normal View History

2024-11-27 22:33:09 +08:00
#include "editor/editor.h"
namespace api {
void EditorModule::OnLoad(int argc, char** argv)
{
2024-12-23 17:44:32 +08:00
2024-11-27 22:33:09 +08:00
}
void EditorModule::OnUnload()
{
}
2024-12-07 18:10:01 +08:00
void EditorModule::Initialize(void)
{
2024-12-23 17:44:32 +08:00
2024-12-07 18:10:01 +08:00
}
2024-11-27 22:33:09 +08:00
}