Files
salmanoff/hcore/include/marionette/body/bodyMap.h
T

24 lines
350 B
C++
Raw Normal View History

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