blob: 07e790cab076d11e01cc363201da7350743ec448 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
#include <SFML/Graphics/RenderWindow.hpp>
namespace dchat
{
class Channel;
class UsersSidePanel
{
public:
static void draw(sf::RenderWindow &window);
static float getWidth();
};
}
|