main.h 358 B

1234567891011121314151617181920
  1. #ifndef MAIN_H_
  2. #define MAIN_H_
  3. #include <tice.h>
  4. #include <debug.h>
  5. #include "lib/scene.h"
  6. #define WALK_SPEED 1;
  7. #define RUN_SPEED 3;
  8. #define SCALE 3.0;
  9. // #define RESIZE_SPRITES
  10. //#define LOG_UPDATE
  11. //#define LOG_DRAW
  12. #define log(msg) dbg_sprintf(dbgout, "[TBP] %s\n", msg)
  13. static int MAX_WIDTH = LCD_WIDTH;
  14. static int MAX_HEIGHT = LCD_HEIGHT;
  15. #endif