mirror of
https://github.com/pineappleEA/pineapple-src.git
synced 2025-02-26 17:39:38 -05:00
11 lines
245 B
C
Executable File
11 lines
245 B
C
Executable File
/*
|
|
* 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);
|