Open Source Tomb Raider Engine
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1234567891011121314 |
- /*!
- * \file include/utils/random.h
- * \brief Random number generation
- *
- * \author xythobuz
- */
-
- #ifndef _UTILS_RANDOM_H_
- #define _UTILS_RANDOM_H_
-
- int randomInteger(int max, int min = 0);
-
- #endif
|