Files
salmanoff/smocore/include/marionette/bodyMap/bodyMap.h
T

24 lines
368 B
C++
Raw Normal View History

2025-09-14 13:16:02 -04:00
#ifndef MRNTT_BODYMAP_BODYMAP_H
#define MRNTT_BODYMAP_BODYMAP_H
#include <set>
#include <cstdint>
2025-09-14 13:16:02 -04:00
#include <bodyMap/limb.h>
2025-07-22 02:03:09 -04:00
namespace mrntt {
2025-09-14 13:16:02 -04:00
namespace bodyMap {
2025-07-22 02:03:09 -04:00
class BodyMap {
public:
BodyMap() = default;
~BodyMap() = default;
2025-07-22 02:03:09 -04:00
public:
std::set<uint32_t, Limb> limbs;
};
2025-09-14 13:16:02 -04:00
} // namespace bodyMap
2025-07-22 02:03:09 -04:00
} // namespace mrntt
2025-09-14 13:16:02 -04:00
#endif // MRNTT_BODYMAP_BODYMAP_H