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