blob: 3ede61c1429f0186f2b120799fc468ef8034654a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#pragma once
#include <dchat/StaticImage.hpp>
#include <dchat/StringView.hpp>
#include <SFML/Graphics/Texture.hpp>
namespace dchat
{
class SfmlStaticImage : public StaticImage
{
public:
SfmlStaticImage(const boost::filesystem::path &path);
virtual ~SfmlStaticImage(){}
sf::Texture texture;
};
}
|