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.h | |
parent | 3a690f7d0c91b92b9cdfe62f44dba8db90142abc (diff) |
created colliders
Diffstat (limited to 'src/crepe/api/BoxCollider.h')
-rw-r--r-- | src/crepe/api/BoxCollider.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/crepe/api/BoxCollider.h b/src/crepe/api/BoxCollider.h new file mode 100644 index 0000000..2461636 --- /dev/null +++ b/src/crepe/api/BoxCollider.h @@ -0,0 +1,15 @@ +#pragma once + +#include "Vector2.h" +#include "../Collider.h" + +namespace crepe { + +class BoxCollider : public Collider { +public: + BoxCollider(game_object_id_t game_object_id,Vector2 offset, int width, int height); + double width; + double height; +}; + +} // namespace crepe |