31 lines
365 B
C++
31 lines
365 B
C++
|
//
|
||
|
// 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
|