pandemonium_engine/modules/steering_ai/SCsub
Relintai 9fed52de03 Added a new steering_ai module.
It's a modified verion of https://github.com/GDQuest/godot-steering-ai-framework which I converted to c++ using thr converter srcipt.
It still needs to be cleaned.
2023-01-13 21:13:57 +01:00

14 lines
153 B
Plaintext

import os
Import('env')
module_env = env.Clone()
sources = [
"register_types.cpp",
]
module_env.add_source_files(env.modules_sources, sources)