28 lines
470 B
C++
28 lines
470 B
C++
//
|
|
// Created by dawsh on 5/12/25.
|
|
//
|
|
|
|
#include <App/EditorApp.hpp>
|
|
|
|
#include "cmake-build-debug/_deps/rewindow-src/include/ReWindow/Logger.h"
|
|
|
|
int main() {
|
|
|
|
ReWindow::Logger::Debug.EnableConsole(false);
|
|
|
|
auto* standalone_app = new EditorApp();
|
|
|
|
bool success = standalone_app->Open();
|
|
|
|
if (!success) {
|
|
// TODO: FUCK
|
|
return -1;
|
|
}
|
|
|
|
while (standalone_app->IsOpen()) {
|
|
standalone_app->ManagedRefresh();
|
|
}
|
|
|
|
return 0;
|
|
}
|