JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
* mt.c: Added (Mersenne Twister random number generator).
[vor.git] / dust.h
diff --git a/dust.h b/dust.h
new file mode 100644 (file)
index 0000000..b8e0de1
--- /dev/null
+++ b/dust.h
@@ -0,0 +1,19 @@
+#ifndef VOR_DUST_H
+#define VOR_DUST_H
+
+#include <stdint.h>
+
+/*
+ * Dust motes are harmless background items.  They are created when the
+ * program is initialized, and are simply wrapped whenever they hit the
+ * edge of the screen.
+ */
+
+#define N_DUST_MOTES 2000
+#define MAX_DUST_DEPTH 2
+
+void init_dust(void);
+void move_dust(void);
+void draw_dust(SDL_Surface *);
+
+#endif // VOR_DUST_H