Start of a movement system with collisions against AABBs

This commit is contained in:
2016-01-13 17:53:54 +01:00
parent d6ef527f25
commit 71d936f8d1
10 changed files with 179 additions and 18 deletions
@@ -1,3 +1,6 @@
#ifndef CollidableOctreeSystem_h__
#define CollidableOctreeSystem_h__
#include "../Core/System.h"
#include "../Core/Octree.h"
#include "Collision.h"
@@ -16,4 +19,6 @@ public:
private:
Octree* m_Octree;
};
};
#endif