Blocks atlas is auto-assembling now

This commit is contained in:
MihailRis
2023-11-22 01:53:48 +03:00
parent ea5c117652
commit fb8d220cca
41 changed files with 622 additions and 75 deletions
+5
View File
@@ -7,11 +7,13 @@
class Texture;
class Shader;
class Font;
class Atlas;
class Assets {
std::unordered_map<std::string, Texture*> textures;
std::unordered_map<std::string, Shader*> shaders;
std::unordered_map<std::string, Font*> fonts;
std::unordered_map<std::string, Atlas*> atlases;
public:
~Assets();
Texture* getTexture(std::string name) const;
@@ -22,6 +24,9 @@ public:
Font* getFont(std::string name) const;
void store(Font* font, std::string name);
Atlas* getAtlas(std::string name) const;
void store(Atlas* atlas, std::string name);
};
#endif /* ASSETS_ASSETS_H_ */