StevEngine
StevEngine is a customizable C++ game engine.
Loading...
Searching...
No Matches
Random.hpp
1#pragma once
2#include <cstdlib>
3
4namespace StevEngine::Utilities {
11 double GetRandomDouble(double min, double max);
12
18 double GetRandomDouble(double max);
19
26 int GetRandomInt(int min, int max);
27
33 int GetRandomInt(int max);
34
35 const bool SetRandomSeed();
36}