Files
vb01/texture.h
T
2021-10-18 19:04:02 +03:00

20 lines
264 B
C++

#ifndef TEXTURE_H
#define TEXTURE_H
#include<string>
namespace vb01{
class Texture{
public:
Texture(std::string);
void select();
private:
unsigned int texture;
int width,height,numChannels;
float weight;
unsigned char *data;
};
}
#endif