diff options
| author | esquizo <esquizo+noreply@esquizo.net> | 2026-04-23 19:32:30 -0300 |
|---|---|---|
| committer | esquizo <esquizo+noreply@esquizo.net> | 2026-04-23 19:32:30 -0300 |
| commit | 8e53990f306a5f746a82793b98c9410e3cde8810 (patch) | |
| tree | b4165d80fca0f046add812e3edd26d6f8f18a80f /map.c | |
| parent | 216d4a05d3b878741f46cc748794a92faa78aa63 (diff) | |
adicionado mapa
Diffstat (limited to 'map.c')
| -rw-r--r-- | map.c | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -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, +}; |
