Files
Turing-Complete-PacMan/src/consts/map.asm
T

11 lines
264 B
NASM

; 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