1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#include <random> #include "muxer.h" #include "game.h" int main() { std::random_device randomDevice; std::mt19937 rng(randomDevice()); initMuxer(); Game game(rng); game.execute(); destroyMuxer(); return 0; }