diff options
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_ |