Aggiunta Collections per ridurre dimensione main

This commit is contained in:
2026-06-08 11:31:21 +02:00
parent 945a85cacf
commit 10d7c806ec
71 changed files with 94 additions and 16546 deletions
@@ -0,0 +1,20 @@
#include "../../pieces/headers/piece_interface.hpp"
#include "../../joints/headers/joint_interface.hpp"
#ifndef COLL_INTERFACE_H
#define COLL_INTERFACE_H
struct collection{
std::vector<PieceInterface*> pieces;
std::vector<JointInterface*> joints;
};
class CollectionInterface{
public:
virtual collection create(ReferencePlane plane) = 0;
virtual ~CollectionInterface(){};
};
#endif