setup empty husk

This commit is contained in:
2024-06-10 20:11:25 +02:00
commit bf91297e83
8 changed files with 252 additions and 0 deletions

16
src/factorio.cpp Normal file
View File

@@ -0,0 +1,16 @@
#include "./factorio.hpp"
#include <solanaceae/message3/components.hpp>
#include <solanaceae/contact/components.hpp>
Factorio::Factorio(Contact3Registry& cr, RegistryMessageModel& rmm) : _cr(cr), _rmm(rmm) {
_rmm.subscribe(this, RegistryMessageModel_Event::message_construct);
}
Factorio::~Factorio(void) {
}
bool Factorio::onEvent(const Message::Events::MessageConstruct& e) {
return false;
}