/TheElements/jni/macros.h

http://thelements.googlecode.com/ · C Header · 21 lines · 9 code · 3 blank · 9 comment · 0 complexity · e10b3c63ec54bbc4bae3c93e091808cb MD5 · raw file

  1. /*
  2. * macros.h
  3. * -------------------------------
  4. * Some overall macros needed by the JNI code.
  5. * These are not all of the macros defined, but
  6. * are ones that are global and may need to be
  7. * changed often, especially TElements (when
  8. * adding new elements)
  9. */
  10. #ifndef MACROS_H_INCLUDED
  11. #define MACROS_H_INCLUDED
  12. #define TPoints 500000
  13. #define TElements 25
  14. #define TPixels 768*1024
  15. #define TCollision 28
  16. #define WIDTH 768
  17. #define HEIGHT 1024
  18. #endif