blob: 0b3afad9b72ac21cf2dfec1dbc45eef46f5d4058 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include "Image_asset.h"
#include <SDL_image.h>
#include <SDL_surface.h>
#include <string>
Texture::Texture(const std::string& content){
this->m_content = content;
}
Texture::~Texture(){
}
|