Onyx-Engine/main.cpp
2025-05-18 13:29:55 -05:00

23 lines
310 B
C++

//
// Created by spenc on 5/14/2025.
//
#include "Editor.h"
#include "Layer.h"
#include "Core.h"
int main()
{
OX::Core core("Obsidian Editor - Onyx Engine (2025.1)(0.0.4)");
core.AddLayer(std::make_unique<OX::Editor>("Obsidian Editor"));
core.Init();
core.Run();
core.Shutdown();
}