diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-01-19 16:20:13 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-01-19 16:20:13 -0500 |
commit | 59edd60ebec61bf24dd27063f85bcd049fd0af13 (patch) | |
tree | 902bb77c940134d20e35dfcb556b8e755bc373ef /include/random.hpp | |
parent | 36ed75a7749b81fab69f66b9ef8bbf0d18489f73 (diff) |
killed common, more inventory, other random stuff
Diffstat (limited to 'include/random.hpp')
-rw-r--r-- | include/random.hpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/include/random.hpp b/include/random.hpp new file mode 100644 index 0000000..198861d --- /dev/null +++ b/include/random.hpp @@ -0,0 +1,20 @@ +/** + * @file random.hpp + * @brief Facilities to generate random numbers. + */ +#ifndef RANDOM_HPP_ +#define RANDOM_HPP_ + +/** + * A generically-named function to start the random number generator. + * This currently redirects to the library's default, but allows for + * a custom generator to be easily implemented. + */ +#define randInit srand + +/** + * Gets a random number (is a function). + */ +#define randGet rand + +#endif // RANDOM_HPP_ |