mirror of
https://github.com/Almamu/linux-wallpaperengine.git
synced 2025-07-16 14:22:24 +08:00
22 lines
339 B
C++
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
|