aboutsummaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorKirill Petrashin <kirill8201@yandex.ru>2026-03-10 18:59:23 +0300
committerKirill Petrashin <kirill8201@yandex.ru>2026-03-10 18:59:23 +0300
commitfe40ce26ec975c2e2f89409913321064a7876d5c (patch)
tree143eccd14ef8270cf102aaf658abfadbe5f532dd /config.h
Initial commit
Diffstat (limited to 'config.h')
-rw-r--r--config.h13
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_