NoiseTexture.h 218 B

123456789101112131415
  1. #ifndef NOISETEXTURE_H
  2. #define NOISETEXTURE_H
  3. #include "client/rendering/wrapper/Texture.h"
  4. class NoiseTexture final {
  5. Texture texture;
  6. public:
  7. NoiseTexture();
  8. void bind(int index) const;
  9. };
  10. #endif