aboutsummaryrefslogtreecommitdiff
path: root/include/UsersSidePanel.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/UsersSidePanel.hpp')
-rw-r--r--include/UsersSidePanel.hpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/UsersSidePanel.hpp b/include/UsersSidePanel.hpp
new file mode 100644
index 0000000..aebdb34
--- /dev/null
+++ b/include/UsersSidePanel.hpp
@@ -0,0 +1,15 @@
+#pragma once
+
+#include "User.hpp"
+#include <SFML/Graphics/RenderWindow.hpp>
+
+namespace dchat
+{
+ class UsersSidePanel
+ {
+ public:
+ static void addUser(User *user);
+ static void draw(sf::RenderWindow &window);
+ static float getWidth();
+ };
+}