aboutsummaryrefslogtreecommitdiff
path: root/include/ChannelTopPanel.hpp
blob: 41fe9a2906bb11263d1cb447af36a35efe5e52da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include <SFML/Graphics/RenderWindow.hpp>

namespace dchat
{
    class ChannelTopPanel
    {
    public:
        static void draw(sf::RenderWindow &window);
        static float getHeight();
    };
}