#include "rand.hpp" std::random_device RNG; std::mt19937 GENERATOR(RNG()); int Random::rand_int(int from, int to) { std::uniform_int_distribution rand(from, to); return rand(GENERATOR); }