/FallingSandpaper/jni/collide.h
http://thelements.googlecode.com/ · C Header · 22 lines · 7 code · 4 blank · 11 comment · 0 complexity · 088125de4bf4483f3abf9234eed395f0 MD5 · raw file
- /*
- * collide.h
- * ----------------------------
- * Declares the collide function, which is the
- * heart of our app. It processes all the collisions by
- * type number. It alone is several hundred lines
- * long, thus the need for a separate file.
- */
- #ifndef COLLIDE_H_INCLUDE
- #define COLLIDE_H_INCLUDE
- //Include stdlib for random
- #include <stdlib.h>
- //Include the global variables
- #include "app.h"
- //Include the points functions
- #include "points.h"
- void collide (int fp, int sp);
- #endif