Merge remote-tracking branch 'origin/havok' into particles

Conflicts:
	src/Components/Vehicle.h
This commit is contained in:
Stiffly
2014-05-12 15:43:41 +02:00
34 changed files with 1243 additions and 447 deletions
+23
View File
@@ -0,0 +1,23 @@
#ifndef Components_Box_h__
#define Components_Box_h__
#include "Component.h"
namespace Components
{
struct BoxShape : Component
{
BoxShape()
: Width(1.f), Height(1.f), Depth(1.f){ }
float Width;
float Height;
float Depth;
virtual BoxShape* Clone() const override { return new BoxShape(*this); }
};
}
#endif // Components_Box_h__