JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
removed ship fade in code (unused)
[vor.git] / dust.h
1 #ifndef VOR_DUST_H
2 #define VOR_DUST_H
3
4 /*
5  * Dust motes are harmless background items.  They are created when the
6  * program is initialized, and are simply wrapped whenever they hit the
7  * edge of the screen.
8  */
9
10 #define N_DUST_MOTES 2000
11 #define MAX_DUST_DEPTH 2
12
13 void init_dust(void);
14 void move_dust(void);
15 void draw_dust(SDL_Surface *);
16
17 #endif // VOR_DUST_H