aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/Image_asset.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/crepe/api/Image_asset.cpp')
-rw-r--r--src/crepe/api/Image_asset.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/crepe/api/Image_asset.cpp b/src/crepe/api/Image_asset.cpp
new file mode 100644
index 0000000..57431c4
--- /dev/null
+++ b/src/crepe/api/Image_asset.cpp
@@ -0,0 +1,14 @@
+
+
+#include "Image_asset.h"
+#include <string>
+
+using namespace crepe::api;
+
+Texture::Texture(const std::string& content){
+ this->m_content = content;
+}
+
+
+Texture::~Texture(){
+}