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

#include <SFML/Graphics/RenderWindow.hpp>

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