summaryrefslogtreecommitdiffstats
path: root/src/Collision.hpp
blob: be4cb97c6877a3c80ee978f9fce2d7f0f6184039 (plain) (blame)
1
2
3
4
5
6
7
8
#pragma once

struct AABB {
	double x,y,z;
	double w,l,h;
};

bool TestCollision(const AABB& first, const AABB& second);