aboutsummaryrefslogtreecommitdiffstats
path: root/include/YAGE/imageloader.hpp
blob: de190ea43cfbdf5d105f2ead729fc72703ae2420 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef IMAGE_LOADER_HPP
#define IMAGE_LOADER_HPP

#include "texture.hpp"

#include <string>

namespace yage
{

class ImageLoader
{
public:
    static Texture loadPng(const std::string &file_path);
};
    
} // yage

#endif