aboutsummaryrefslogtreecommitdiffstats
path: root/include/yage/image_loader.hpp
blob: 5f7b97f0b55ea4908eb5bb8acc6850620023e350 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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