aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/BoxCollider.h
blob: 2ce1ee8b92c3d5fda39b772af9fcccf057024d45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#pragma once

#include "Vector2.h"
#include "../Collider.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,vec2 offset, float width, float height);

	//! Width of box collider 
	float width;

	//! Height of box collider
	float height;
};

} // namespace crepe