Basic tile map implemented.

This commit is contained in:
Zed A. Shaw 2024-12-20 19:39:11 -05:00
parent 290affa49a
commit b66a3154c7
9 changed files with 135 additions and 12 deletions

View file

@ -22,6 +22,7 @@ dependencies = [
runtests = executable('runtests', [
'matrix.cpp',
'dbc.cpp',
'tilemap.cpp',
'map.cpp',
'rand.cpp',
'sound.cpp',
@ -37,6 +38,7 @@ runtests = executable('runtests', [
'systems.cpp',
'gui.cpp',
'worldbuilder.cpp',
'tests/tilemap.cpp',
'tests/matrix.cpp',
'tests/fsm.cpp',
'tests/dbc.cpp',
@ -58,10 +60,11 @@ runtests = executable('runtests', [
dependencies: dependencies)
roguish = executable('roguish', [
'matrix.cpp',
'dbc.cpp',
'main.cpp',
'matrix.cpp',
'tilemap.cpp',
'map.cpp',
'main.cpp',
'gui.cpp',
'rand.cpp',
'sound.cpp',