blob: b76eb5e458a6fe49340bd6cdc3199fda9fe9c540 (
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 Cache;
class UsersSidePanel
{
public:
static void draw(sf::RenderWindow &window, Cache *cache);
static float getWidth();
};
}
|