Aggiunto header lower_body

This commit is contained in:
2026-06-18 12:13:35 +02:00
parent a2a299c0a1
commit f8fdc1dc84
5 changed files with 36 additions and 8 deletions
+28
View File
@@ -0,0 +1,28 @@
#include "gamba.hpp"
#ifndef LOWER_BODY_H
#define LOWER_BODY_H
struct gamba_data{
rb::Vector3 pos;
unsigned int* dataPos;
std::string cosciaData;
std::string cavigliaData;
};
class lower_body
{
protected:
Gamba sx;
Gamba dx;
Torso t;
public:
lower_body(std::vector<gamba_data> data);
~lower_body();
};
#endif