diff options
author | heavydemon21 <nielsstunnebrink1@gmail.com> | 2024-09-16 17:34:05 +0200 |
---|---|---|
committer | heavydemon21 <nielsstunnebrink1@gmail.com> | 2024-09-16 17:34:05 +0200 |
commit | 51f7699966ab856c873648ee25621b80421f8c8f (patch) | |
tree | 5806253e5175994c3b6db08ba74ea12bd892c821 /resource-manager/Image_asset.h | |
parent | 666a77004bbd8909b24355ef316b099f0683570f (diff) |
loading images work through resource manager, however needs return fixing. cause right now static cast needs to be done outside
Diffstat (limited to 'resource-manager/Image_asset.h')
-rw-r--r-- | resource-manager/Image_asset.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/resource-manager/Image_asset.h b/resource-manager/Image_asset.h new file mode 100644 index 0000000..e7d13e9 --- /dev/null +++ b/resource-manager/Image_asset.h @@ -0,0 +1,19 @@ +#pragma once + + + +#include "resource.h" +#include <SDL_surface.h> + + + + + +class Image : public Resource { + +public: + SDL_Surface* surface = nullptr; + + ~Image(); + +}; |