12 lines
177 B
C
12 lines
177 B
C
|
#ifndef VIDEOSERVICE_H
|
||
|
#define VIDEOSERVICE_H
|
||
|
#include <SFML/Graphics.hpp>
|
||
|
#include <memory>
|
||
|
|
||
|
class VideoService {
|
||
|
private:
|
||
|
std::shared_ptr<sf::Texture> texture;
|
||
|
};
|
||
|
|
||
|
#endif
|