aboutsummaryrefslogtreecommitdiff
path: root/config.h
blob: 3eb931dc080c77ace68c718e076b335fa9939c1e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef CONFIG_H_
#define CONFIG_H_

// The characters that represent different tiles
#define EMPTY_CHAR         '.'
#define GOAL_CHAR          'Z'
#define WALL_CHAR          '#'
#define START_CHAR         'A'

#define DRAW_MAP_OFFSET_X  1
#define DRAW_MAP_OFFSET_Y  1

#endif //CONFIG_H_