Merge remote-tracking branch 'origin/havok' into particles
Conflicts: src/Components/Vehicle.h
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
#ifndef Components_HingeConstraint_h__
|
||||
#define Components_HingeConstraint_h__
|
||||
|
||||
#include "Component.h"
|
||||
|
||||
namespace Components
|
||||
{
|
||||
|
||||
struct HingeConstraint : Component
|
||||
{
|
||||
EntityID LinkedEntity;
|
||||
glm::vec3 Pivot;
|
||||
glm::vec3 Axis;
|
||||
|
||||
virtual HingeConstraint* Clone() const override { return new HingeConstraint(*this); }
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif // Components_HingeConstraint_h__
|
||||
Reference in New Issue
Block a user