Advertisement
Suby

constants.h

Apr 27th, 2012
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. #ifndef CONSTANTS_H
  2. #define CONSTANTS_H
  3.  
  4. const int SCREEN_WIDTH = 480;
  5. const int SCREEN_PLAYABLE_WIDTH = 350;
  6. const int SCREEN_HEIGHT = 630;
  7. const int SCREEN_BPP = 32;
  8.  
  9. const int BLOCK_MOVEMENT_SPEED = 400;
  10.  
  11. const int BLOCK_WIDTH = 35;
  12. const int BLOCK_HEIGHT = 35;
  13.  
  14. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement