aboutsummaryrefslogtreecommitdiffstats
path: root/include/image_loader.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/image_loader.hpp')
-rw-r--r--include/image_loader.hpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/image_loader.hpp b/include/image_loader.hpp
new file mode 100644
index 0000000..5f7b97f
--- /dev/null
+++ b/include/image_loader.hpp
@@ -0,0 +1,15 @@
+#ifndef IMAGE_LOADER_HPP
+#define IMAGE_LOADER_HPP
+
+#include "gl_texture.hpp"
+
+#include <string>
+
+class ImageLoader
+{
+public:
+ static GlTexture loadPng(const std::string &file_path);
+};
+
+
+#endif