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