aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/BoxCollider.cpp
blob: 60348371f87901423cea26ff4a34add8af7e085f (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,vec2 offset, float width, float height) : Collider(game_object_id,offset), width(width), height(height) {}