summaryrefslogtreecommitdiff
path: root/map.c
diff options
context:
space:
mode:
authoresquizo <esquizo+noreply@esquizo.net>2026-05-02 14:55:03 -0300
committeresquizo <esquizo+noreply@esquizo.net>2026-05-02 14:55:03 -0300
commit2416783679eafe35aea7af15bf1308a6895e251a (patch)
treef3d08269b9dff0eeedff8312e4b96b99169652ff /map.c
parentd2d0886cf770488d1b4890a3a414bbf983e784a6 (diff)
mapa arbitrário a partir de uma imagem
Diffstat (limited to 'map.c')
-rw-r--r--map.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/map.c b/map.c
deleted file mode 100644
index 8c12514..0000000
--- a/map.c
+++ /dev/null
@@ -1,14 +0,0 @@
-int map_width = 8;
-int map_height = 8;
-
-char map_data[] = {
- 1, 0, 0, 0, 0, 0, 0, 0,
- 0, 1, 1, 0, 0, 0, 0, 0,
- 0, 1, 1, 0, 0, 0, 0, 0,
- 0, 1, 1, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 1, 1, 0,
- 0, 0, 0, 0, 0, 1, 1, 0,
- 0, 0, 0, 0, 0, 1, 1, 0,
- 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0,
-};