diff options
author | JAROWMR <jarorutjes07@gmail.com> | 2024-12-12 14:59:59 +0100 |
---|---|---|
committer | JAROWMR <jarorutjes07@gmail.com> | 2024-12-12 14:59:59 +0100 |
commit | f9ed8f05ec95e530041d54921cdd17023cdfde6f (patch) | |
tree | 8c746a502b1dea0a805ed1b0a95829c8b95c9bff /src/crepe/system/AISystem.cpp | |
parent | 7a931b354f6ef6615049771bce32335bb049723b (diff) |
make format
Diffstat (limited to 'src/crepe/system/AISystem.cpp')
-rw-r--r-- | src/crepe/system/AISystem.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/crepe/system/AISystem.cpp b/src/crepe/system/AISystem.cpp index a20e28c..6578ecb 100644 --- a/src/crepe/system/AISystem.cpp +++ b/src/crepe/system/AISystem.cpp @@ -44,7 +44,6 @@ void AISystem::update() { vec2 acceleration = force / rigidbody.data.mass; // Finally, update Rigidbody's velocity rigidbody.data.linear_velocity += acceleration * duration<float>(dt).count(); - } } |