#pragma once #include namespace dchat { class Channel; class ChannelSidePanel { public: static void addChannel(Channel *channel); static void removeAllChannels(); static void draw(sf::RenderWindow &window); static float getWidth(); }; }