Implemented a simple collision hash table.

This commit is contained in:
Zed A. Shaw 2024-10-25 22:31:09 -04:00
parent dbc2a10933
commit 743f906bc7
7 changed files with 174 additions and 1 deletions

View file

@ -17,9 +17,11 @@ runtests = executable('runtests', [
'dbc.cpp',
'map.cpp',
'rand.cpp',
'collider.cpp',
'tests/fsm.cpp',
'tests/dbc.cpp',
'tests/map.cpp',
'tests/collider.cpp',
],
dependencies: dependencies)
@ -29,6 +31,7 @@ roguish = executable('roguish', [
'map.cpp',
'gui.cpp',
'rand.cpp',
'collider.cpp',
'systems.cpp',
],
dependencies: dependencies)