1c397dfeb5
Now we can probably begin using libspinscale in Couresilient without worrying about excessive technical debt later on.
15 lines
299 B
C++
15 lines
299 B
C++
#include <simulator/simulator.h>
|
|
#include <mind.h>
|
|
|
|
namespace smo {
|
|
namespace simulator {
|
|
|
|
Simulator::Simulator(
|
|
Mind &parent, const std::shared_ptr<sscl::PuppetThread> &thread)
|
|
: MindComponent(static_cast<sscl::PuppetApplication&>(parent), thread)
|
|
{
|
|
}
|
|
|
|
} // namespace simulator
|
|
} // namespace smo
|