From 8e53990f306a5f746a82793b98c9410e3cde8810 Mon Sep 17 00:00:00 2001 From: esquizo Date: Thu, 23 Apr 2026 19:32:30 -0300 Subject: adicionado mapa --- map.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 map.c (limited to 'map.c') diff --git a/map.c b/map.c new file mode 100644 index 0000000..8c12514 --- /dev/null +++ b/map.c @@ -0,0 +1,14 @@ +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, +}; -- cgit v1.2.3