linux-wallpaperengine/WallpaperEngine/texture.h
Alexis Maiquez 654918904a ~ Changed namespace names for wp::core and wp to a more suited name
Signed-off-by: Alexis Maiquez <almamu@almamu.com>
2019-08-15 01:53:40 +02:00

22 lines
339 B
C++

#ifndef WALLENGINE_TEXTURE_H
#define WALLENGINE_TEXTURE_H
#include <irrlicht/irrlicht.h>
namespace WallpaperEngine
{
class texture
{
public:
texture (irr::io::path& file);
irr::video::ITexture* getIrrTexture ();
private:
irr::video::ITexture* m_texture;
};
}
#endif //WALLENGINE_TEXTURE_H