Merge branch 'OctTree' of github.com:teamfisk/TacticalZ into OctTree

# Conflicts:
#	include/Engine/Core/Collision.h
#	src/Engine/Core/Collision.cpp
This commit is contained in:
William Moberg
2015-12-03 17:11:35 +01:00
9 changed files with 587 additions and 25 deletions
+2 -1
View File
@@ -3,12 +3,13 @@
#include "Core/Ray.h"
#include "Core/AABB.h"
#include <algorithm>
namespace Collision
{
bool RayAABBIntr(const Ray& ray, const AABB& box);
bool RayVsAABB(const Ray& ray, const AABB& box);
}
#endif