Files

24 lines
334 B
C++
Raw Permalink Normal View History

2025-09-14 13:16:02 -04:00
#ifndef _BODYMAP_MAP_H
#define _BODYMAP_MAP_H
2025-07-22 02:03:09 -04:00
#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;
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 // _BODYMAP_MAP_H