15 lines
No EOL
170 B
C++
15 lines
No EOL
170 B
C++
#ifndef TEXTURE_H
|
|
#define TEXTURE_H
|
|
|
|
#include <string>
|
|
|
|
class Texture
|
|
{
|
|
public:
|
|
unsigned int ID;
|
|
|
|
Texture(const char* texturePath);
|
|
void use();
|
|
};
|
|
|
|
#endif |