Files
salmanoff/smocore/component.cpp
T

28 lines
442 B
C++
Raw Normal View History

#include <component.h>
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