A retro style homage to 80s dungeon crawlers hand crafted in C++.
 
 
 
 
 
 
raycaster/rand.cpp

6 lines
101 B

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