diff options
author | max-001 <maxsmits21@kpnmail.nl> | 2024-12-06 17:14:00 +0100 |
---|---|---|
committer | max-001 <maxsmits21@kpnmail.nl> | 2024-12-06 17:14:00 +0100 |
commit | 33a072db28d71ba65e59f9491abd42dbf9695fc4 (patch) | |
tree | dc911454f5cc98198ac55370bb1bffd6aee3b053 /src/crepe/system/AISystem.h | |
parent | 0d0943d23364d7110f0232e3564f4ea63af13db2 (diff) |
Implemented path_follow
Diffstat (limited to 'src/crepe/system/AISystem.h')
-rw-r--r-- | src/crepe/system/AISystem.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crepe/system/AISystem.h b/src/crepe/system/AISystem.h index 18f1c61..27861d9 100644 --- a/src/crepe/system/AISystem.h +++ b/src/crepe/system/AISystem.h @@ -20,7 +20,7 @@ private: vec2 seek(const AI & ai); vec2 flee(const AI & ai); vec2 arrive(const AI & ai); - vec2 path_follow(const AI & ai); + vec2 path_follow(AI & ai); }; } // namespace crepe |