Add Marionette

This commit was merged in pull request #1.
This commit is contained in:
2025-07-22 02:03:09 -04:00
parent 336094ef90
commit e7974db324
11 changed files with 131 additions and 44 deletions
+17
View File
@@ -0,0 +1,17 @@
#ifndef _BODY_H
#define _BODY_H
namespace mrntt {
namespace body {
class Body
{
public:
Body() = default;
~Body() = default;
};
} // namespace body
} // namespace mrntt
#endif // _BODY_H