blob: 57431c4ee5d13f88643b59d54b079d5d94fe4c3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "Image_asset.h"
#include <string>
using namespace crepe::api;
Texture::Texture(const std::string& content){
this->m_content = content;
}
Texture::~Texture(){
}
|