blob: 9cee9072c98c2a2664a48ef8f85ed6c4c889e4e0 (
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 ChannelSidePanel
{
public:
static void addChannel(Channel *channel);
static void removeAllChannels();
static void draw(sf::RenderWindow &window);
static float getWidth();
};
}
|