]> git.localhorst.tv Git - blank.git/blobdiff - src/main.cpp
minor optimizations in chunk
[blank.git] / src / main.cpp
index 06771fe8c4b76d1df04ee9292dd92088eb2428d0..3cf7bf94c97d26d358b0ee97f90d07fc97a16f5a 100644 (file)
@@ -1,13 +1,9 @@
-#include "app.hpp"
+#include "runtime.hpp"
 
 using namespace blank;
 
-
 int main(int argc, char *argv[]) {
-
-       Application app;
-       app.Run();
-
-       return 0;
-
+       Runtime rt;
+       rt.ReadArgs(argc, argv);
+       return rt.Execute();
 }