2024-11-27 22:33:09 +08:00
|
|
|
#include "editor/editor.h"
|
2024-12-07 18:10:01 +08:00
|
|
|
#include "data/global.h"
|
2024-12-08 23:00:39 +08:00
|
|
|
#include "render/window.h"
|
|
|
|
|
#include "render/renderapi.h"
|
2024-11-27 22:33:09 +08:00
|
|
|
namespace api {
|
|
|
|
|
void EditorModule::OnLoad(int argc, char** argv)
|
|
|
|
|
{
|
2024-12-07 18:10:01 +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-08 23:00:39 +08:00
|
|
|
|
2024-12-07 18:10:01 +08:00
|
|
|
}
|
2024-11-27 22:33:09 +08:00
|
|
|
}
|