JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
* rocks.c (hit_rocks): oops, had r(ight) where I should have had t(op).
[vor.git] / dust.h
1 #ifndef VOR_DUST_H
2 #define VOR_DUST_H
3
4 #include <stdint.h>
5
6 /*
7  * Dust motes are harmless background items.  They are created when the
8  * program is initialized, and are simply wrapped whenever they hit the
9  * edge of the screen.
10  */
11
12 #define N_DUST_MOTES 2000
13 #define MAX_DUST_DEPTH 2
14
15 void init_dust(void);
16 void move_dust(void);
17 void draw_dust(SDL_Surface *);
18
19 #endif // VOR_DUST_H