aboutsummaryrefslogtreecommitdiff
path: root/include/UsersSidePanel.hpp
blob: b2855bba789c23d8f5f4fcdbb62e409690d9f360 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once

#include <SFML/Graphics/RenderWindow.hpp>

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