diff options
author | max-001 <maxsmits21@kpnmail.nl> | 2024-12-04 13:46:41 +0100 |
---|---|---|
committer | max-001 <maxsmits21@kpnmail.nl> | 2024-12-04 13:46:41 +0100 |
commit | f9f5600b60d6944dc9a7dd502988703d59d0cd62 (patch) | |
tree | 4f6d7cfe7e15bf0fd3b838769cb2a093de487ba6 /src/crepe/api/AI.cpp | |
parent | ac87bfad20e1bcf1fd066a4eda231608fe12f504 (diff) |
Setup some behaviors
Diffstat (limited to 'src/crepe/api/AI.cpp')
-rw-r--r-- | src/crepe/api/AI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crepe/api/AI.cpp b/src/crepe/api/AI.cpp index 6b63216..7f820a8 100644 --- a/src/crepe/api/AI.cpp +++ b/src/crepe/api/AI.cpp @@ -2,7 +2,7 @@ namespace crepe { -AI::AI(game_object_id_t id, double mass, double max_speed, double max_force) +AI::AI(game_object_id_t id, float mass, float max_speed, float max_force) : Component(id), mass(mass), max_speed(max_speed), |