2024-06-10 20:11:25 +02:00
|
|
|
#include "./factorio.hpp"
|
|
|
|
|
|
|
|
#include <solanaceae/message3/components.hpp>
|
|
|
|
#include <solanaceae/contact/components.hpp>
|
|
|
|
|
2024-06-10 22:27:19 +02:00
|
|
|
Factorio::Factorio(Contact3Registry& cr, RegistryMessageModel& rmm) :
|
|
|
|
_cr(cr),
|
2024-06-11 09:45:52 +02:00
|
|
|
_rmm(rmm)
|
2024-06-10 22:27:19 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
|
2024-06-10 20:11:25 +02:00
|
|
|
_rmm.subscribe(this, RegistryMessageModel_Event::message_construct);
|
|
|
|
}
|
|
|
|
|
|
|
|
Factorio::~Factorio(void) {
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Factorio::onEvent(const Message::Events::MessageConstruct& e) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|