Add Marionette

This commit was merged in pull request #1.
This commit is contained in:
2025-07-22 02:03:09 -04:00
parent 336094ef90
commit e7974db324
11 changed files with 131 additions and 44 deletions
+23
View File
@@ -0,0 +1,23 @@
#ifndef _BODY_MAP_H
#define _BODY_MAP_H
#include <set>
#include <cstdint>
#include <body/limb.h>
namespace mrntt {
namespace body {
class BodyMap {
public:
BodyMap() = default;
~BodyMap() = default;
std::set<uint32_t, Limb> limbs;
};
} // namespace body
} // namespace mrntt
#endif // _BODY_MAP_H