diff options
author | JAROWMR <jarorutjes07@gmail.com> | 2024-12-01 20:00:24 +0100 |
---|---|---|
committer | JAROWMR <jarorutjes07@gmail.com> | 2024-12-01 20:00:24 +0100 |
commit | e8c83a6a4421ae81215cf8bd6393b0ff014f147e (patch) | |
tree | 1773d94a527e1c581a71640d7a3f6154be562bc0 /src/crepe/api/BoxCollider.cpp | |
parent | 8f2d0a5a7edb6120c85cb7250e14e2055831a7cb (diff) |
feedback changes
Diffstat (limited to 'src/crepe/api/BoxCollider.cpp')
-rw-r--r-- | src/crepe/api/BoxCollider.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crepe/api/BoxCollider.cpp b/src/crepe/api/BoxCollider.cpp index 83fb632..4c767c8 100644 --- a/src/crepe/api/BoxCollider.cpp +++ b/src/crepe/api/BoxCollider.cpp @@ -1,7 +1,7 @@ #include "BoxCollider.h" + #include "../Collider.h" using namespace crepe; - BoxCollider::BoxCollider(game_object_id_t game_object_id,vec2 offset, double width, double height) : Collider(game_object_id,offset), width(width), height(height) {} |