Aggiustati include
This commit is contained in:
@@ -1,5 +1,8 @@
|
||||
#include "joint_interface.hpp"
|
||||
|
||||
#ifndef PIVOTJ_H
|
||||
#define PIVOTJ_H
|
||||
|
||||
class PivotJoint : public JointInterface {
|
||||
protected:
|
||||
void rotate(unsigned int id) override;
|
||||
@@ -25,4 +28,6 @@ class PivotJoint : public JointInterface {
|
||||
|
||||
PivotJoint(PieceInterface* father,std::vector<PieceInterface*> childs, rb::Vector3 pivotPoint);
|
||||
~PivotJoint();
|
||||
};
|
||||
};
|
||||
|
||||
#endif
|
||||
@@ -1,5 +1,7 @@
|
||||
#include "joint_interface.hpp"
|
||||
|
||||
#ifndef RIGIDJ_H
|
||||
#define RIGIDJ_H
|
||||
|
||||
class RigidJoint : public JointInterface {
|
||||
protected:
|
||||
@@ -16,4 +18,6 @@ class RigidJoint : public JointInterface {
|
||||
|
||||
RigidJoint(PieceInterface* father,std::vector<PieceInterface*> childs);
|
||||
~RigidJoint();
|
||||
};
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user