git-subtree-dir: src/3rdParty/libE57Format git-subtree-split: d51a32d6ab7c5dde5e1c68d0ec8ec61d980f06a3
15 lines
319 B
C++
15 lines
319 B
C++
#pragma once
|
|
// libE57Format testing Copyright © 2022 Andy Maloney <asmaloney@gmail.com>
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
|
|
#include <cstdint>
|
|
|
|
namespace Random
|
|
{
|
|
// Seed our pseudo-random number generator for reproducibility.
|
|
void seed( uint32_t inSeed );
|
|
|
|
// Get a pseudo-random number.
|
|
float num();
|
|
}
|