From a44fc682a5f2eb54dfac6705ff21d0778639af6a Mon Sep 17 00:00:00 2001 From: moderndevslulw Date: Fri, 4 Apr 2025 14:30:36 +0500 Subject: feat: 7TV API client --- include/emotespp/emotes.hpp | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'include/emotespp/emotes.hpp') diff --git a/include/emotespp/emotes.hpp b/include/emotespp/emotes.hpp index 5a5e172..4f08f39 100644 --- a/include/emotespp/emotes.hpp +++ b/include/emotespp/emotes.hpp @@ -3,6 +3,7 @@ #include #include #include +#include namespace emotespp { struct Emote { @@ -45,4 +46,12 @@ namespace emotespp { std::function, T)>> emote_update; }; + + template + class RetrieveEmoteAPI { + public: + virtual std::vector get_channel_emotes( + std::string &channel_id) const = 0; + virtual std::vector get_global_emotes() const = 0; + }; } \ No newline at end of file -- cgit v1.2.3