feat: initial commit

This commit is contained in:
2025-09-30 16:12:38 +02:00
commit 1d1d23a148
42 changed files with 9256374 additions and 0 deletions

17
include/texture.h Normal file
View File

@ -0,0 +1,17 @@
#ifndef TEXTURE_H_
#define TEXTURE_H_
#include <string>
#include <memory>
class Texture {
private:
unsigned int m_id;
private:
public:
Texture() {}
static std::unique_ptr<Texture> LoadFile(const std::string& filename);
public:
inline const unsigned int GetID() const { return m_id; }
};
#endif // TEXTURE_H_