2025-09-14 22:17:19 -04:00
|
|
|
#include <component.h>
|
2025-10-05 22:01:37 -04:00
|
|
|
#include <marionette/marionette.h>
|
2025-09-14 22:17:19 -04:00
|
|
|
|
|
|
|
|
namespace smo {
|
|
|
|
|
|
|
|
|
|
Component::Component(const std::shared_ptr<ComponentThread> &thread)
|
|
|
|
|
: thread(thread)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MindComponent::MindComponent(
|
|
|
|
|
Mind &parent, const std::shared_ptr<ComponentThread> &thread)
|
|
|
|
|
: Component(thread),
|
|
|
|
|
parent(parent)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
namespace mrntt {
|
|
|
|
|
|
|
|
|
|
MarionetteComponent::MarionetteComponent(
|
|
|
|
|
const std::shared_ptr<ComponentThread> &thread)
|
|
|
|
|
: Component(thread)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace mrntt
|
|
|
|
|
|
|
|
|
|
} // namespace smo
|