Can now run the full AI for all combatants and then sort by the action costs to make the action queue.

This commit is contained in:
Zed A. Shaw 2025-11-27 12:46:14 -05:00
parent d244106981
commit b48df3f4db
10 changed files with 104 additions and 59 deletions

View file

@ -8,7 +8,11 @@ project('raycaster', 'cpp',
])
# use this for common options only for our executables
cpp_args=[]
cpp_args=[
'-Wno-unused-parameter',
'-Wno-unused-function',
'-Wno-unused-variable',
]
link_args=[]
# these are passed as override_defaults
exe_defaults = [ 'warning_level=2' ]