aboutsummaryrefslogtreecommitdiffstats
path: root/include/YAGE/imageloader.hpp
blob: a9c00c4bcae141013ad7be2c64008672b0bbe961 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* ----------------------------------------------------------------------------
 * imageloader.hpp
 *
 * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
 * See file LICENSE for more details
 * ----------------------------------------------------------------------------
 */

#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