aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/BoxCollider.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-12-06 19:19:56 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-12-06 19:19:56 +0100
commitb9f22bb78b2d5f565451d9cd97c523fbedadaa18 (patch)
treef8c406cdcf12a9a996b7aa2eaa3f7036c9697c5d /src/crepe/api/BoxCollider.h
parent0bed469e2ececfa240085a34252dd7ed23519de3 (diff)
parent70c1cd14ec4c4aca185d5a7e4a3749169f6425f4 (diff)
Merge branch 'jaro/collision-system' of github.com:lonkaars/crepe
Diffstat (limited to 'src/crepe/api/BoxCollider.h')
-rw-r--r--src/crepe/api/BoxCollider.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/crepe/api/BoxCollider.h b/src/crepe/api/BoxCollider.h
new file mode 100644
index 0000000..89e43d8
--- /dev/null
+++ b/src/crepe/api/BoxCollider.h
@@ -0,0 +1,22 @@
+#pragma once
+
+#include "../Collider.h"
+#include "Vector2.h"
+#include "types.h"
+
+namespace crepe {
+
+/**
+ * \brief A class representing a box-shaped collider.
+ *
+ * This class is used for collision detection with other colliders (e.g., CircleCollider).
+ */
+class BoxCollider : public Collider {
+public:
+ BoxCollider(game_object_id_t game_object_id, const vec2 & offset, const vec2 & dimensions);
+
+ //! Width and height of the box collider
+ vec2 dimensions;
+};
+
+} // namespace crepe