feat: reorganize source code + cleanup

This commit is contained in:
2025-10-01 16:15:19 +02:00
parent fec93b098b
commit 2b0494a23d
21 changed files with 183 additions and 610 deletions

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_