// project headers #include "random.hpp" // std libs #include namespace Random { int get_value(int min, int max) { return (std::rand()%(abs(max - min) + 1) + min); } }