/FallingSandpaper/jni/collide.h

http://thelements.googlecode.com/ · C Header · 22 lines · 7 code · 4 blank · 11 comment · 0 complexity · 088125de4bf4483f3abf9234eed395f0 MD5 · raw file

  1. /*
  2. * collide.h
  3. * ----------------------------
  4. * Declares the collide function, which is the
  5. * heart of our app. It processes all the collisions by
  6. * type number. It alone is several hundred lines
  7. * long, thus the need for a separate file.
  8. */
  9. #ifndef COLLIDE_H_INCLUDE
  10. #define COLLIDE_H_INCLUDE
  11. //Include stdlib for random
  12. #include <stdlib.h>
  13. //Include the global variables
  14. #include "app.h"
  15. //Include the points functions
  16. #include "points.h"
  17. void collide (int fp, int sp);
  18. #endif