aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/Image_asset.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/crepe/api/Image_asset.h')
-rw-r--r--src/crepe/api/Image_asset.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/crepe/api/Image_asset.h b/src/crepe/api/Image_asset.h
new file mode 100644
index 0000000..69549af
--- /dev/null
+++ b/src/crepe/api/Image_asset.h
@@ -0,0 +1,18 @@
+#pragma once
+
+
+
+#include "resource.h"
+#include <string>
+
+namespace crepe::api {
+
+
+class Texture : public Resource {
+
+public:
+ Texture(const std::string&);
+ ~Texture();
+};
+
+}