diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-14 12:47:41 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-14 12:48:12 +0100 |
commit | 644c1ee1a1f109ae293cc6b09fafe8ba8b448ff3 (patch) | |
tree | 4dd37b0f133f03a420523322bea0a9e081898ded /src/crepe/api/BoxCollider.h | |
parent | 98828008e9e1e3b94f1f882b266ef5d5c2180b9f (diff) |
more demo WIP
Diffstat (limited to 'src/crepe/api/BoxCollider.h')
-rw-r--r-- | src/crepe/api/BoxCollider.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crepe/api/BoxCollider.h b/src/crepe/api/BoxCollider.h index 1ac4d46..3835e2c 100644 --- a/src/crepe/api/BoxCollider.h +++ b/src/crepe/api/BoxCollider.h @@ -13,7 +13,7 @@ namespace crepe { */ class BoxCollider : public Collider { public: - BoxCollider(game_object_id_t game_object_id, const vec2 & offset, const vec2 & dimensions); + BoxCollider(game_object_id_t game_object_id, const vec2 & dimensions, const vec2 & offset = { 0, 0 }); //! Width and height of the box collider vec2 dimensions; |