Files
salmanoff/smocore/mind.cpp
T

29 lines
562 B
C++
Raw Normal View History

#include <iostream>
2024-09-08 01:04:41 +10:00
#include <mind.h>
#include <componentThread.h>
namespace smo {
void Mind::initialize()
{
/* Jolt the threads, then start them */
ComponentThread::joltAllMindThreadsReq(
[]()
{
std::cout << "Mrntt: All mind threads JOLTed." << "\n";
ComponentThread::startAllMindThreadsReq(
[]()
{
std::cout << "Mrntt: All mind threads started." << "\n";
}
);
}
);
}
2025-07-30 10:14:18 -04:00
void Mind::finalize(void)
{
}
} // namespace smo