mirror of
https://github.com/Ryujinx/SDL.git
synced 2025-01-11 04:15:32 +00:00
11 lines
245 B
C
11 lines
245 B
C
/*
|
|
* 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);
|