Move code into a subdir(/src)
[bootcreen] / main.cpp
diff --git a/main.cpp b/main.cpp
deleted file mode 100644 (file)
index 19e5d29..0000000
--- a/main.cpp
+++ /dev/null
@@ -1,17 +0,0 @@
-#include "bootscreen.h"
-#include "bootscreenR.h"
-
-int main(int argc, char *argv[])
-{
-    QString arg = argv[1];
-
-    if (arg == "--random")
-        BootScreenR br;
-    else{
-        QApplication app(argc, argv);
-        BootScreen bs;
-        bs.show();
-        return app.exec();
-    }
-
-}