#ifndef NOISETEXTURE_H #define NOISETEXTURE_H #include "rendering/Texture.h" class NoiseTexture final { Texture texture; public: bool init(); void bindTo(int index) const; }; #endif