mp-sfml/include/videoService.h

12 lines
177 B
C
Raw Normal View History

2024-09-30 13:34:05 +08:00
#ifndef VIDEOSERVICE_H
#define VIDEOSERVICE_H
#include <SFML/Graphics.hpp>
#include <memory>
class VideoService {
private:
std::shared_ptr<sf::Texture> texture;
};
#endif