aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/BoxCollider.h
blob: 357c9797005fbecc8ad1b14c714c1143094ca19a (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, double width, double height);
	double width;
	double height;
};

} // namespace crepe