#pragma once #include "User.hpp" #include namespace dchat { class UsersSidePanel { public: static void addUser(User *user); static void draw(sf::RenderWindow &window); static float getWidth(); }; }