// // Created by spenc on 5/14/2025. // #include "Editor.h" #include "Layer.h" #include "Core.h" int main() { constexpr const char* VERSION = "0.0.7"; // Format: 0. constexpr const char* TITLE = "Obsidian Editor - Onyx Engine (2025.1)"; OX::Core core(std::string(TITLE) + " (" + VERSION + ")"); core.AddLayer(std::make_unique("Obsidian Editor")); core.Init(); core.Run(); core.Shutdown(); }