raycaster/rand.cpp

6 lines
101 B
C++

#include "rand.hpp"
namespace Random {
std::random_device RNG;
std::mt19937 GENERATOR(RNG());
}