Nitpicks.

This commit is contained in:
William Moberg
2016-02-09 17:19:39 +01:00
parent 239a8e7a6a
commit eec59a40c8
2 changed files with 1 additions and 1 deletions
+1
View File
@@ -75,6 +75,7 @@ Game::Game(int argc, char* argv[])
// Create Octrees
// TODO: Perhaps the world bounds should be set in some non-arbitrary way instead of this.
AABB boxContainingTheWorld(glm::vec3(-300), glm::vec3(300));
m_OctreeCollision = new Octree<EntityAABB>(boxContainingTheWorld, 4);
m_OctreeTrigger = new Octree<EntityAABB>(boxContainingTheWorld, 4);