diff options
author | JAROWMR <jarorutjes07@gmail.com> | 2024-11-10 19:49:10 +0100 |
---|---|---|
committer | JAROWMR <jarorutjes07@gmail.com> | 2024-11-10 19:49:10 +0100 |
commit | 428182f45797de73b0bc2335916d25762b0d719b (patch) | |
tree | 9fe9044177c253351a393590526e83098529b559 /src/crepe/api/BoxCollider.cpp | |
parent | 3a690f7d0c91b92b9cdfe62f44dba8db90142abc (diff) |
created colliders
Diffstat (limited to 'src/crepe/api/BoxCollider.cpp')
-rw-r--r-- | src/crepe/api/BoxCollider.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/crepe/api/BoxCollider.cpp b/src/crepe/api/BoxCollider.cpp new file mode 100644 index 0000000..c3cb60c --- /dev/null +++ b/src/crepe/api/BoxCollider.cpp @@ -0,0 +1,8 @@ +#pragma once + +#include "BoxCollider.h" + +using namespace crepe; + + +BoxCollider::BoxCollider(game_object_id_t game_object_id,Vector2 offset, int width, int height) : Collider(game_object_id,offset), width(width), height(height) {} |