summaryrefslogtreecommitdiffhomepage
path: root/src/random.cpp
blob: ec49e364c76dba37e3e4a64150f8cd501c5ae67b (plain)
1
2
3
4
5
6
7
8
9
#include "random.hpp"
#include <cstdlib>
namespace Random
{
	int get_value(int min, int max)
	{
		return (std::rand()%(abs(max - min) + 1) + min);
	}
}