277b24dfb7
This allows more consistency in the manner we include core headers, where previously there would be a mix of absolute, relative and include path-dependent includes.
14 lines
388 B
C++
14 lines
388 B
C++
// *Really* minimal PCG32 code / (c) 2014 M.E. O'Neill / pcg-random.org
|
|
// Licensed under Apache License 2.0 (NO WARRANTY, etc. see website)
|
|
|
|
#ifndef RANDOM_H
|
|
#define RANDOM_H
|
|
|
|
#include "core/typedefs.h"
|
|
|
|
#define PCG_DEFAULT_INC_64 1442695040888963407ULL
|
|
|
|
typedef struct { uint64_t state; uint64_t inc; } pcg32_random_t;
|
|
uint32_t pcg32_random_r(pcg32_random_t* rng);
|
|
|
|
#endif // RANDOM_H
|