aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/AI.cpp
diff options
context:
space:
mode:
authormax-001 <maxsmits21@kpnmail.nl>2024-12-06 10:39:18 +0100
committermax-001 <maxsmits21@kpnmail.nl>2024-12-06 10:39:18 +0100
commit9c2cafd85ed7aa9a860ba25fbe2bd3ccc2439f29 (patch)
tree1b0601f5867acbfe6adf2defe097f067495aedfa /src/crepe/api/AI.cpp
parent42ecf9c1d0e3ed1f37f99a24f31241b68f978b28 (diff)
Using Rigidbody from now on
Diffstat (limited to 'src/crepe/api/AI.cpp')
-rw-r--r--src/crepe/api/AI.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/crepe/api/AI.cpp b/src/crepe/api/AI.cpp
index 7f820a8..d785bb5 100644
--- a/src/crepe/api/AI.cpp
+++ b/src/crepe/api/AI.cpp
@@ -2,10 +2,6 @@
namespace crepe {
-AI::AI(game_object_id_t id, float mass, float max_speed, float max_force)
- : Component(id),
- mass(mass),
- max_speed(max_speed),
- max_force(max_force) {}
+AI::AI(game_object_id_t id, float max_force) : Component(id), max_force(max_force) {}
} // namespace crepe