summaryrefslogtreecommitdiff
path: root/src/main.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.cc')
-rw-r--r--src/main.cc10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/main.cc b/src/main.cc
index 91525f7..c7b1fff 100644
--- a/src/main.cc
+++ b/src/main.cc
@@ -1,10 +1,18 @@
+#include "mainwindow.h"
+
#include <QApplication>
-#include "mainwindow.h"
+#include <cstdlib>
int main(int argc, char **argv)
{
+ // TODO initialize random seed
+ /*
+ unsigned int seed = THE_SEED;
+ srandom(seed);
+ */
+
QApplication application(argc, argv);
MainWindow mainwindow;