aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/BoxCollider.h
blob: 3835e2c42f22e0f356610cca9da5a28308bf4516 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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 & dimensions, const vec2 & offset = { 0, 0 });

	//! Width and height of the box collider
	vec2 dimensions;
};

} // namespace crepe