Roguelike
 All Classes Namespaces Functions Variables Typedefs Friends Pages
constants.h
1 
20 #ifndef _CONSTANTS_H
21 #define _CONSTANTS_H
22 
23 static const int CHUNK_WIDTH = 100;
24 static const int CHUNK_HEIGHT = 50;
25 
26 static const int SCREEN_WIDTH = 120;
27 static const int SCREEN_HEIGHT = 50;
28 
29 static const int GAME_WIDTH = 100;
30 static const int GAME_HEIGHT = 50;
31 
32 static const int UI_WIDTH = 20;
33 static const int UI_HEIGHT = 50;
34 
35 static const int UI_START = SCREEN_WIDTH - UI_WIDTH + 1;
36 
37 static const int WORLD_WIDTH = 100;
38 static const int WORLD_HEIGHT = 50;
39 
40 #endif