19 lines
370 B
C++
19 lines
370 B
C++
/** @file
|
|
* @author Edouard DUPIN
|
|
* @copyright 2011, Edouard DUPIN, all right reserved
|
|
* @license APACHE v2.0 (see license file)
|
|
*/
|
|
#pragma once
|
|
|
|
#include <egami/egami.hpp>
|
|
|
|
namespace egami {
|
|
/**
|
|
* @breif Load a png file in the image.
|
|
* @param[in] _fileName Name of the file.
|
|
* @return Read Image.
|
|
*/
|
|
egami::Image loadPNG(const std::string& _fileName);
|
|
}
|
|
|