#pragma once #include #include namespace dchat { class Channel; class ChannelSidePanel { public: ChannelSidePanel(float width); void addChannel(Channel *channel); void draw(sf::RenderWindow &window); float width; private: std::vector channels; }; }