Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
12 lines (10 loc) · 257 Bytes

File metadata and controls

12 lines (10 loc) · 257 Bytes
 
1
2
3
4
5
6
7
8
9
10
11
12
/*
* common.h
* written by Holmes Futrell
* use however you want
*/
#define SCREEN_WIDTH 320
#define SCREEN_HEIGHT 480
extern int randomInt(int min, int max);
extern float randomFloat(float min, float max);
extern void fatalError(const char *string);