aboutsummaryrefslogtreecommitdiff
path: root/resource-manager/Image_asset.cpp
blob: 77eee2f1172862d01c0619c67308ef037aee2a4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "Image_asset.h"
#include <SDL2/SDL_surface.h>



Image::~Image(){
	if (surface) {
		SDL_FreeSurface(surface);
	}
}