aboutsummaryrefslogtreecommitdiff
path: root/include/ResourceCache.hpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2018-04-20 01:29:54 +0200
committerdec05eba <dec05eba@protonmail.com>2018-04-20 01:31:23 +0200
commit391f7fd6d832cb40f74fb37f9e0af7ff33db202f (patch)
tree1d3e2b54dfade403da579a23029ae98f1a5c8f5b /include/ResourceCache.hpp
parentc670ad2839d886107189a5a0d0854a02aa0ace53 (diff)
Add message board, in the middle of text selection
Diffstat (limited to 'include/ResourceCache.hpp')
-rw-r--r--include/ResourceCache.hpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/ResourceCache.hpp b/include/ResourceCache.hpp
new file mode 100644
index 0000000..d35eb8f
--- /dev/null
+++ b/include/ResourceCache.hpp
@@ -0,0 +1,13 @@
+#pragma once
+
+#include <SFML/Graphics/Font.hpp>
+#include <string>
+
+namespace dchat
+{
+ class ResourceCache
+ {
+ public:
+ static const sf::Font& getFont(const std::string &filepath);
+ };
+}