Marionette: Create include dir and move body map headers in

This commit is contained in:
2025-02-02 15:19:34 -04:00
parent d43a8af6bd
commit 336094ef90
4 changed files with 0 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#ifndef _BODY_MAP_H
#define _BODY_MAP_H
#include <set>
#include <cstdint>
#include <body/limb.h>
class BodyMap {
public:
BodyMap() = default;
~BodyMap() = default;
std::set<uint32_t, BodyLimb> limbs;
};
#endif // _BODY_MAP_H