aboutsummaryrefslogtreecommitdiff
path: root/src/includes/Global.hpp
diff options
context:
space:
mode:
authoraleksav013 <aleksav013@gmail.com>2021-06-01 21:03:32 +0200
committeraleksav013 <aleksav013@gmail.com>2021-06-01 21:03:32 +0200
commitdbe41a2f77774ee716d3ff45db766d6400970f57 (patch)
treeec86f7305bcb2d3eec37bf8e123cb901f80a5a5d /src/includes/Global.hpp
parent82d49a6825af009d950b3a6c18d609da2ef8486c (diff)
Splitting code; Creating Makefile
Diffstat (limited to 'src/includes/Global.hpp')
-rw-r--r--src/includes/Global.hpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/includes/Global.hpp b/src/includes/Global.hpp
new file mode 100644
index 0000000..bfb808a
--- /dev/null
+++ b/src/includes/Global.hpp
@@ -0,0 +1,12 @@
+#ifndef GLOBAL_H
+#define GLOBAL_H
+
+#include<random>
+#define seseku(a,b) a.getGlobalBounds().intersects(b.getGlobalBounds())
+class Global
+{
+ public:
+ static std::mt19937 rng;
+};
+
+#endif