/TheElements/jni/update.h

http://thelements.googlecode.com/ · C Header · 26 lines · 9 code · 5 blank · 12 comment · 0 complexity · b0c2905e7e563696b3b0f3cfe8331ae9 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. //Include the clear funtion (rsetup)
  19. #include "setup.h"
  20. void UpdateView(void);
  21. #endif