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); } }