Aggiustati include

This commit is contained in:
2026-06-08 11:46:06 +02:00
parent f15e13475d
commit a2a299c0a1
7 changed files with 23 additions and 6 deletions
+6 -1
View File
@@ -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