aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/BoxCollider.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/crepe/api/BoxCollider.h')
-rw-r--r--src/crepe/api/BoxCollider.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/crepe/api/BoxCollider.h b/src/crepe/api/BoxCollider.h
index 1f5f1c1..89e43d8 100644
--- a/src/crepe/api/BoxCollider.h
+++ b/src/crepe/api/BoxCollider.h
@@ -1,7 +1,7 @@
#pragma once
-#include "Vector2.h"
#include "../Collider.h"
+#include "Vector2.h"
#include "types.h"
namespace crepe {
@@ -13,9 +13,9 @@ 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 & offset, const vec2 & dimensions);
- //! Width and height of the box collider
+ //! Width and height of the box collider
vec2 dimensions;
};