diff options
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) {} |