#pragma once #include "StarHumanoid.hpp" namespace Star { STAR_CLASS(EmoteProcessor); class EmoteProcessor { public: EmoteProcessor(); HumanoidEmote detectEmotes(String const& chatter) const; private: struct EmoteBinding { EmoteBinding() : emote() {} String text; HumanoidEmote emote; }; List m_emoteBindings; }; }