Onyx-Engine/main.cpp

20 lines
311 B
C++
Raw Normal View History

2025-05-18 17:42:48 +00:00
//
// Created by spenc on 5/14/2025.
//
#include "Editor.h"
#include "Core.h"
int main()
{
2025-05-21 15:16:46 +00:00
OX::Core core{};
2025-05-18 17:42:48 +00:00
2025-05-21 15:16:46 +00:00
core.AddLayer(std::make_unique<OX::Editor>(OX_EDITOR_VERSION));
2025-05-18 17:42:48 +00:00
2025-05-21 14:25:43 +00:00
//core.AddLayer(std::make_unique<OX::DummyLayer>("Dummy Layer"));
2025-05-18 17:42:48 +00:00
core.Init();
core.Run();
core.Shutdown();
2025-05-19 16:25:41 +00:00
}