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