diff options
Diffstat (limited to 'resource-manager/Image_asset.h')
-rw-r--r-- | resource-manager/Image_asset.h | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/resource-manager/Image_asset.h b/resource-manager/Image_asset.h index 93617e6..97daca1 100644 --- a/resource-manager/Image_asset.h +++ b/resource-manager/Image_asset.h @@ -3,26 +3,14 @@ #include "resource.h" -#include <SDL_render.h> -#include <SDL_surface.h> #include <string> - - class Texture : public Resource { public: - Texture(const std::string& path); + Texture(const std::string&); ~Texture(); - - void setTexture(SDL_Renderer& renderer); - SDL_Surface* getSurface() const; - SDL_Texture* getTexture() const; - -private: - SDL_Surface* m_surface; - SDL_Texture* m_texture; }; |