aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/BoxCollider.cpp
blob: 1069e90104a2cbe822c377b6bd76fde61b364028 (plain)
1
2
3
4
5
6
7
#include "BoxCollider.h"

#include "../Collider.h" 

using namespace crepe;

BoxCollider::BoxCollider(game_object_id_t game_object_id,const vec2& offset, float width, float height) : Collider(game_object_id,offset), width(width), height(height) {}