Components + almost AABB

This commit is contained in:
Adam
2014-03-06 21:32:31 +01:00
parent 54a5a7a113
commit 00584ab397
21 changed files with 401 additions and 11 deletions
+17
View File
@@ -0,0 +1,17 @@
#ifndef Bounds_h__
#define Bounds_h__
#include "Component.h"
#include "AABB.h"
namespace Components
{
struct Bounds : Component
{
AABB BB; //Axis Aligned Bounding Box
};
REGISTER_COMPONENT("Bounds", Bounds);
}
#endif // !Bounds_h__