From fe40ce26ec975c2e2f89409913321064a7876d5c Mon Sep 17 00:00:00 2001 From: Kirill Petrashin Date: Tue, 10 Mar 2026 18:59:23 +0300 Subject: Initial commit --- config.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 config.h (limited to 'config.h') 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_ -- cgit v1.2.3