2025-05-18 17:42:48 +00:00
|
|
|
//
|
|
|
|
// Created by spenc on 5/14/2025.
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "Editor.h"
|
|
|
|
#include "Layer.h"
|
|
|
|
#include "Core.h"
|
|
|
|
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
|
2025-05-18 18:33:24 +00:00
|
|
|
OX::Core core("Obsidian Editor - Onyx Engine (2025.1)(0.0.7)");
|
2025-05-18 17:42:48 +00:00
|
|
|
|
|
|
|
|
2025-05-18 18:29:55 +00:00
|
|
|
core.AddLayer(std::make_unique<OX::Editor>("Obsidian Editor"));
|
2025-05-18 17:42:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
core.Init();
|
|
|
|
core.Run();
|
|
|
|
core.Shutdown();
|
|
|
|
|
|
|
|
}
|