2025-12-27 14:15:17 -04:00
|
|
|
#include <simulator/simulator.h>
|
|
|
|
|
#include <mind.h>
|
|
|
|
|
|
|
|
|
|
namespace smo {
|
|
|
|
|
namespace simulator {
|
|
|
|
|
|
2025-12-27 16:21:22 -04:00
|
|
|
Simulator::Simulator(Mind &parent, const std::shared_ptr<sscl::ComponentThread> &thread)
|
|
|
|
|
: sscl::PuppetComponent(static_cast<sscl::PuppetApplication&>(parent), thread)
|
2025-12-27 14:15:17 -04:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace simulator
|
|
|
|
|
} // namespace smo
|