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

24 lines
368 B
C++

#ifndef MRNTT_BODYMAP_BODYMAP_H
#define MRNTT_BODYMAP_BODYMAP_H
#include <set>
#include <cstdint>
#include <bodyMap/limb.h>
namespace mrntt {
namespace bodyMap {
class BodyMap {
public:
BodyMap() = default;
~BodyMap() = default;
public:
std::set<uint32_t, Limb> limbs;
};
} // namespace bodyMap
} // namespace mrntt
#endif // MRNTT_BODYMAP_BODYMAP_H