/FallingSandpaper/jni/update.h

http://thelements.googlecode.com/ · C Header · 24 lines · 8 code · 5 blank · 11 comment · 0 complexity · 6e39f3d0b289ef50e86603455a3a976c MD5 · raw file

  1. /*
  2. * update.c
  3. * -----------------------------------
  4. * Declares the function UpdateView(), which
  5. * is called every frame to update all the
  6. * particles' positions. Also provides all
  7. * the necessary includes and defines.
  8. */
  9. #ifndef UPDATE_H_INCLUDED
  10. #define UPDATE_H_INCLUDED
  11. #include <stdlib.h>
  12. //Include the global variables
  13. #include "app.h"
  14. //Include the points functions
  15. #include "points.h"
  16. //Include the collision function
  17. #include "collide.h"
  18. void UpdateView(void);
  19. #endif