2025-12-27 14:15:17 -04:00
|
|
|
#include <simulator/simulator.h>
|
|
|
|
|
#include <mind.h>
|
|
|
|
|
|
|
|
|
|
namespace smo {
|
|
|
|
|
namespace simulator {
|
|
|
|
|
|
2026-02-18 02:05:18 -04:00
|
|
|
Simulator::Simulator(
|
|
|
|
|
Mind &parent, const std::shared_ptr<sscl::PuppetThread> &thread)
|
2026-02-22 17:46:27 -04:00
|
|
|
: MindComponent(static_cast<sscl::PuppetApplication&>(parent), thread)
|
2025-12-27 14:15:17 -04:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace simulator
|
|
|
|
|
} // namespace smo
|