10 lines
223 B
NASM
10 lines
223 B
NASM
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
|