summaryrefslogtreecommitdiff
path: root/random.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'random.hpp')
-rw-r--r--random.hpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/random.hpp b/random.hpp
deleted file mode 100644
index e74267a..0000000
--- a/random.hpp
+++ /dev/null
@@ -1,19 +0,0 @@
-#ifndef UR_RANDOM_H
-#define UR_RANDOM_H
-
-#include <random>
-namespace ur {
-class Random
-{
-public:
- Random(int min, int max);
- int next();
-
-private:
- int min;
- int max;
- std::default_random_engine engine;
- std::normal_distribution<float> distribution;
-};
-}
-#endif