Refactored in a way modules have access to bot infrastructure

This commit is contained in:
Blue 2025-03-09 21:01:41 +02:00
parent c605b3ba93
commit 89c04254b8
Signed by: blue
GPG key ID: 9B203B252A63EE38
25 changed files with 245 additions and 216 deletions

View file

@ -11,3 +11,7 @@ Actor::Actor(const std::string& jid, const std::string& group) :
void Actor::setGroup(const std::string& newGroup) {
group = newGroup;
}
std::string Actor::getGroup() const {
return group;
}