lower cmake version and start drafting mcd

This commit is contained in:
2023-12-03 11:43:16 +01:00
parent 0e27cf4476
commit 317bd5bb52
4 changed files with 64 additions and 2 deletions

View File

@@ -0,0 +1,27 @@
#include "./message_command_dispatcher.hpp"
#include <solanaceae/util/config_model.hpp>
MessageCommandDispatcher::MessageCommandDispatcher(
Contact3Registry& cr,
RegistryMessageModel& rmm,
ConfigModelI& conf
) :
_cr(cr), _rmm(rmm), _conf(conf)
{
}
MessageCommandDispatcher::~MessageCommandDispatcher(void) {
}
void MessageCommandDispatcher::iterate(float time_delta) {
}
bool MessageCommandDispatcher::onEvent(const Message::Events::MessageConstruct& e) {
return false;
}
bool MessageCommandDispatcher::onEvent(const Message::Events::MessageUpdated& e) {
return false;
}