aboutsummaryrefslogtreecommitdiff
path: root/src/rand.hpp
blob: 38929881f34f8fd57ac614c1e3c6278b2cea366b (plain)
1
2
3
4
5
6
7
// Simple wrapper around the current random number generator of choice
#pragma once

#include "rand/pcg.hpp"

struct RandomState : public Pcg32 {
};