From a408a43cd105b89a8d44292e2ef69802a5660497 Mon Sep 17 00:00:00 2001 From: Stephen Enders Date: Sat, 23 Jan 2021 11:52:32 -0500 Subject: Move source files to src folder We'll be making a few source files it'll be useful to have them organized at least somewhat from our non-src files --- random.hpp | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 random.hpp (limited to 'random.hpp') 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 -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 distribution; -}; -} -#endif -- cgit v1.2.3-54-g00ecf