create repository with functional basic implementation
This commit is contained in:
10
src/consts/map.asm
Normal file
10
src/consts/map.asm
Normal 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
|
||||
Reference in New Issue
Block a user