This commit is contained in:
Kueffner, Maximilian
2025-03-13 12:00:14 +01:00
parent 0d62ce3e0d
commit b9955077d6
5 changed files with 199 additions and 2 deletions
+5 -1
View File
@@ -1,7 +1,11 @@
#include <iostream>
#include "AppGLFW.hpp"
int main(int argc, char** argv)
{
std::cout << "ok\n";
return 0;
auto app = ui::AppGLFW();
return app.Run();
}