Files
fishtanks/src/Components/HingeConstraint.h
T
Stiffly 457ee84903 Merge remote-tracking branch 'origin/havok' into particles
Conflicts:
	src/Components/Vehicle.h
2014-05-12 15:43:41 +02:00

21 lines
367 B
C++

#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__