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

#include <SFML/Graphics/Font.hpp>
#include <string>

namespace dchat
{
    class ResourceCache
    {
    public:
        static const sf::Font& getFont(const std::string &filepath);
    };
}