diff options
author | heavydemon21 <nielsstunnebrink1@gmail.com> | 2024-09-30 10:56:13 +0200 |
---|---|---|
committer | heavydemon21 <nielsstunnebrink1@gmail.com> | 2024-09-30 10:56:13 +0200 |
commit | a08f5acf483d5371ccab70ba75c39ac6a5f96ce7 (patch) | |
tree | 433be57896814c82625066ff901b1c7bc951c951 /resource-manager/Image_asset.h | |
parent | a6f3b8c71513a1a7d416ec57627836ed4d9a7d94 (diff) |
changed resource manager based on feedback
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; }; |