diff options
Diffstat (limited to 'config.h')
| -rw-r--r-- | config.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/config.h b/config.h new file mode 100644 index 0000000..3b3cd51 --- /dev/null +++ b/config.h @@ -0,0 +1,13 @@ +#ifndef CONFIG_H_ +#define CONFIG_H_ + +// The characters that represent different tiles +#define EMPTY_CHAR '.' +#define GOAL_CHAR 'X' +#define WALL_CHAR '#' +#define PLAYER_CHAR '@' + +#define DRAW_MAP_OFFSET_X 1 +#define DRAW_MAP_OFFSET_Y 1 + +#endif //CONFIG_H_ |
