Exploring raycasters and possibly make a little "doom like" game based on it.
 
 
 
 
 
 
raycaster/rand.cpp

6 lines
101 B

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