aboutsummaryrefslogtreecommitdiff
path: root/include/RoomSidePanel.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/RoomSidePanel.hpp')
-rw-r--r--include/RoomSidePanel.hpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/RoomSidePanel.hpp b/include/RoomSidePanel.hpp
new file mode 100644
index 0000000..95000ba
--- /dev/null
+++ b/include/RoomSidePanel.hpp
@@ -0,0 +1,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();
+ };
+}