diff options
author | max-001 <maxsmits21@kpnmail.nl> | 2024-12-11 13:20:32 +0100 |
---|---|---|
committer | max-001 <maxsmits21@kpnmail.nl> | 2024-12-11 13:20:32 +0100 |
commit | 6eef90e9ffb1d8fc25161e912bc5d8aa8e4024da (patch) | |
tree | 872c0ebff38854c1e0f62e818f800002db8f5ec4 /src | |
parent | 405bf73b273c7b9a6574d77b4a034d9588c9af1b (diff) |
Added Doxygen
Diffstat (limited to 'src')
-rw-r--r-- | src/crepe/api/AI.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/crepe/api/AI.h b/src/crepe/api/AI.h index fc28451..f1c8951 100644 --- a/src/crepe/api/AI.h +++ b/src/crepe/api/AI.h @@ -117,7 +117,9 @@ private: //! The AISystem is the only class that should access the flags and path_index variables friend class AISystem; + //! The minimum amount of steps for the path following behavior static constexpr const int MIN_STEP = 16; + //! The radius to step size ratio for the path following behavior static constexpr const float RADIUS_TO_STEP = 400.0f; }; |