#pragma once #include "Text.hpp" #include "Cache.hpp" #include #include #include namespace dchat { class Suggestions { public: void show(const std::vector &texts); void draw(sf::RenderWindow &window, Cache &cache); private: std::vector> texts; }; }