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