/FallingSandpaper/jni/update.h
http://thelements.googlecode.com/ · C Header · 24 lines · 8 code · 5 blank · 11 comment · 0 complexity · 6e39f3d0b289ef50e86603455a3a976c MD5 · raw file
- /*
- * update.c
- * -----------------------------------
- * Declares the function UpdateView(), which
- * is called every frame to update all the
- * particles' positions. Also provides all
- * the necessary includes and defines.
- */
- #ifndef UPDATE_H_INCLUDED
- #define UPDATE_H_INCLUDED
- #include <stdlib.h>
- //Include the global variables
- #include "app.h"
- //Include the points functions
- #include "points.h"
- //Include the collision function
- #include "collide.h"
- void UpdateView(void);
- #endif