mirror of
https://github.com/open-goal/jak-project
synced 2026-07-31 00:14:38 -04:00
bdaf088d4b
Co-authored-by: Hat Kid <6624576+Hat-Kid@users.noreply.github.com>
11 lines
245 B
C
Vendored
Generated
11 lines
245 B
C
Vendored
Generated
/*
|
|
* common.h
|
|
* written by Holmes Futrell
|
|
* use however you want
|
|
*/
|
|
|
|
extern int randomInt(int min, int max);
|
|
extern float randomFloat(float min, float max);
|
|
extern void fatalError(const char *string);
|
|
extern double updateDeltaTime(void);
|