Test filters context map & message builder (#4886)

This commit is contained in:
pajlada
2023-10-13 17:41:23 +02:00
committed by GitHub
parent b85d666b32
commit 9f23c8562a
17 changed files with 345 additions and 70 deletions
+6
View File
@@ -17,6 +17,7 @@ public:
virtual ITwitchEmotes *getTwitchEmotes() = 0;
virtual IEmojis *getEmojis() = 0;
virtual GIFTimer &getGIFTimer() = 0;
};
class Emotes final : public IEmotes, public Singleton
@@ -38,6 +39,11 @@ public:
return &this->emojis;
}
GIFTimer &getGIFTimer() final
{
return this->gifTimer;
}
TwitchEmotes twitch;
Emojis emojis;