aboutsummaryrefslogtreecommitdiff
path: root/resource-manager/Image_asset.h
blob: e7d13e9724665c35a1584cef76bec6a06652bf85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once



#include "resource.h"
#include <SDL_surface.h>





class Image : public Resource {

public:
	SDL_Surface* surface = nullptr;

	~Image();

};