Files
b_engine/src/TextureManager.h

21 lines
512 B
C
Raw Normal View History

2026-05-02 21:24:21 -04:00
//
// Created by slinky on 5/1/26.
//
#ifndef B_ENGINE_TEXTUREMANAGER_H
#define B_ENGINE_TEXTUREMANAGER_H
2026-05-02 21:24:21 -04:00
#include <memory>
#include <unordered_map>
#include "Texture.h"
class TextureManager {
2026-05-02 21:24:21 -04:00
public:
static std::unordered_map<std::string, std::shared_ptr<Texture>> textures;
static std::shared_ptr<Texture> load_from_file(std::string_view filePath);
static std::shared_ptr<Texture> load_from_data(unsigned char* data, int width, int height, int channels);
};
#endif //B_ENGINE_TEXTUREMANAGER_H