30 lines
451 B
C++
30 lines
451 B
C++
//
|
|
// Created by dawsh on 5/12/25.
|
|
//
|
|
|
|
#include <Editor/EditorApp.hpp>
|
|
|
|
#include "ReWindow/Logger.h"
|
|
|
|
int main(int argc, char** argv) {
|
|
|
|
|
|
|
|
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;
|
|
}
|