aboutsummaryrefslogtreecommitdiffstats
path: root/include/YAGE/imageloader.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/YAGE/imageloader.hpp')
-rw-r--r--include/YAGE/imageloader.hpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/include/YAGE/imageloader.hpp b/include/YAGE/imageloader.hpp
new file mode 100644
index 00000000..632897dc
--- /dev/null
+++ b/include/YAGE/imageloader.hpp
@@ -0,0 +1,19 @@
+#ifndef IMAGE_LOADER_HPP
+#define IMAGE_LOADER_HPP
+
+#include "gltexture.hpp"
+
+#include <string>
+
+namespace yage
+{
+
+class ImageLoader
+{
+public:
+ static GlTexture loadPng(const std::string &file_path);
+};
+
+} // yage
+
+#endif