aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/BoxCollider.h
blob: 2461636caa171ff143ab8e9b9ec6206b1e204321 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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