Onyx-Engine/src/editor/Editor.cpp

31 lines
365 B
C++
Raw Normal View History

2025-05-18 17:42:48 +00:00
//
// Created by spenc on 5/18/2025.
//
#include "Editor.h"
namespace OX {
void Editor::Init(Core& core)
{
Logger::LogOk("Editor::Init");
}
void Editor::Update(Core& core)
{
}
void Editor::Draw(Core& core)
{
}
void Editor::Shutdown(Core& core)
{
Logger::LogOk("Editor::Shutdown");
}
} // OX