diff options
| author | Kirill Petrashin <kirill8201@yandex.ru> | 2026-03-10 18:59:23 +0300 |
|---|---|---|
| committer | Kirill Petrashin <kirill8201@yandex.ru> | 2026-03-10 18:59:23 +0300 |
| commit | fe40ce26ec975c2e2f89409913321064a7876d5c (patch) | |
| tree | 143eccd14ef8270cf102aaf658abfadbe5f532dd /config.h | |
Initial commit
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_ |
