create repository with functional basic implementation

This commit is contained in:
2026-04-24 07:13:59 +02:00
commit 7014692d71
24 changed files with 1265 additions and 0 deletions

10
src/consts/map.asm Normal file
View File

@@ -0,0 +1,10 @@
; map size 16x12 (or 15x11 with margins)
pub const map.width = 15
pub const map.height = 11
pub const map.size = 165 ; 11*15
pub const map.max_x = 14
pub const map.max_y = 10
pub const map.tiles.empty = 0
pub const map.tiles.wall = 1
pub const map.tiles.coin = 2