#ifndef NORMALTEXTURE_H #define NORMALTEXTURE_H #include "client/rendering/wrapper/Texture.h" class NormalTexture final { public: NormalTexture(const char* path); void bind(uint index) const; private: Texture texture; }; #endif