Wrath of Zeus
Made by Torchlight Games for CSE 125 SP24
Loading...
Searching...
No Matches
rng.hpp
Go to the documentation of this file.
1#pragma once
2
3// Moreso including these right now to test cmake is building everything correctly,
4// but we probably will want these eventually
5
13double randomDouble(double min, double max);
14
22int randomInt(int min, int max);
23
double randomDouble(double min, double max)
Definition: rng.cpp:6
int randomInt(int min, int max)
Definition: rng.cpp:13