NoiseTexture.h 213 B

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