NormalTexture.h 244 B

12345678910111213141516
  1. #ifndef NORMALTEXTURE_H
  2. #define NORMALTEXTURE_H
  3. #include "client/rendering/wrapper/Texture.h"
  4. class NormalTexture final {
  5. public:
  6. NormalTexture(const char* path);
  7. void bind(uint index) const;
  8. private:
  9. Texture texture;
  10. };
  11. #endif