diff options
Diffstat (limited to 'src/crepe/facade/Texture.h')
-rw-r--r-- | src/crepe/facade/Texture.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/crepe/facade/Texture.h b/src/crepe/facade/Texture.h new file mode 100644 index 0000000..3677f6e --- /dev/null +++ b/src/crepe/facade/Texture.h @@ -0,0 +1,25 @@ +#pragma once + +#include "api/Resource.h" +#include <SDL2/SDL_render.h> +#include <memory> + + +namespace crepe { + +class Texture { + +public: + Texture(const char * src); + Texture(std::unique_ptr<api::Resource> res); + ~Texture(); + +private: + void load(std::unique_ptr<api::Resource> res); + +private: + SDL_Texture* m_texture; +}; + +} // namespace crepe + |