Files
create/test/include/RandomNum.h
Chris Hennes 82927817b8 Squashed 'src/3rdParty/libE57Format/' content from commit d51a32d6ab7
git-subtree-dir: src/3rdParty/libE57Format
git-subtree-split: d51a32d6ab7c5dde5e1c68d0ec8ec61d980f06a3
2025-09-23 14:20:50 -05:00

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();
}