/** --------------------------------------------------------------------------- * @file: imageloader.h * * Copyright (c) 2017 Yann Herklotz Grave * MIT License, see LICENSE file for more details. * ---------------------------------------------------------------------------- */ #pragma once #include namespace yage { class Texture; class ImageLoader { public: static Texture loadPng(const std::string &file_path); }; } // namespace yage