mirror of
https://github.com/devZoGok/vb01.git
synced 2026-08-27 03:53:24 +00:00
19 lines
247 B
C++
19 lines
247 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;
|
|
unsigned char *data;
|
|
};
|
|
}
|
|
|
|
#endif
|