diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-17 15:21:48 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-17 15:21:48 +0100 |
commit | 3c7373eba71ccf5f16069d540c9f66e297895b1a (patch) | |
tree | 4116fa8f5a3670c4a1689dfb2a63fd32cf53b941 /src/crepe/api/BoxCollider.h | |
parent | 154ed5353ef18eb46cc31744e8bf1bc54afd5acc (diff) | |
parent | 9232a98b72eee7af4f7f2153c1b2ccedbfa4cc65 (diff) |
Merge branch 'master' into loek/savemgr
Diffstat (limited to 'src/crepe/api/BoxCollider.h')
-rw-r--r-- | src/crepe/api/BoxCollider.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/crepe/api/BoxCollider.h b/src/crepe/api/BoxCollider.h index 1ac4d46..d643e7f 100644 --- a/src/crepe/api/BoxCollider.h +++ b/src/crepe/api/BoxCollider.h @@ -13,7 +13,8 @@ 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; |