diff --git a/src/render/textures.cpp b/src/render/textures.cpp index 879c4f9..e765012 100644 --- a/src/render/textures.cpp +++ b/src/render/textures.cpp @@ -16,11 +16,11 @@ struct TextureAtlas { return atlas[id]; } - bool LoadImage(const char *path) { + void LoadImage(const char *path) { atlas.push_back(LoadTexture(path)); } - bool AddTexture(Texture texture){ + void AddTexture(Texture texture){ atlas.push_back(texture); }