/FallingSandpaper/jni/points.h

http://thelements.googlecode.com/ · C Header · 20 lines · 8 code · 4 blank · 8 comment · 0 complexity · edd0f24c78362ad659f12a7bcfe71bab MD5 · raw file

  1. /*
  2. * points.h
  3. * ----------------------------
  4. * Declares functions for manipulating data
  5. * for individual points, such as adding and
  6. * deleting points.
  7. */
  8. #ifndef POINTS_H_INCLUDED
  9. #define POINTS_H_INCLUDED
  10. //Include global variables
  11. #include "app.h"
  12. void CreatePoint(int k, int l, int e);
  13. void DeletePoint(int partnum);
  14. void setBitmapColor(int xpos, int ypos, int element);
  15. void unFreezeParticles(int xcentre, int ycentre);
  16. #endif