blob: eafbdb255c2059fa1d55c62c086b82ee382f4357 (
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,Vector2 offset, double width, double height) : Collider(game_object_id,offset), width(width), height(height) {}
|