#pragma once #include #include #include namespace dchat { class SfmlStaticImage : public StaticImage { public: SfmlStaticImage(const boost::filesystem::path &path); virtual ~SfmlStaticImage(){} sf::Texture texture; }; }