aboutsummaryrefslogtreecommitdiffstats
path: root/yage/core/imageloader.h
blob: 389805728d3d458fd37efe597dad3bb46211bc40 (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
/** ---------------------------------------------------------------------------
 * @file: imageloader.h
 *
 * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
 * MIT License, see LICENSE file for more details.
 * ----------------------------------------------------------------------------
 */

#pragma once

#include <string>

namespace yage
{

class Texture;

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

} // namespace yage