added a texture class

This commit is contained in:
Lukian 2025-01-29 12:51:09 +01:00
parent 78c7efd063
commit ed8237a601
8 changed files with 8076 additions and 9 deletions

7988
include/stb_image.h Normal file

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,15 @@
#ifndef TEXTURE_H
#define TEXTURE_H
#include <string>
class Texture
{
public:
unsigned int ID;
Texture(const char* texturePath);
void use();
};
#endif