aboutsummaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/main.cpp b/main.cpp
index d1d3949..e6262dc 100644
--- a/main.cpp
+++ b/main.cpp
@@ -1,8 +1,11 @@
#include <iostream>
+#include <ctime>
+#include <cstdlib>
#include "graphics.hpp"
int main()
{
+ srand(time(NULL));
Graphics g;
g.run();
}