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

#include <SFML/Graphics/RenderWindow.hpp>

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