Shader loading error text fix

This commit is contained in:
MihailRis
2023-12-02 17:53:53 +03:00
parent 8c261efbd4
commit 54178eafc1
4 changed files with 50 additions and 58 deletions
+8 -8
View File
@@ -8,17 +8,17 @@ class Assets;
namespace assetload {
bool texture(Assets* assets,
const std::filesystem::path& filename,
const std::string& name);
const std::filesystem::path filename,
const std::string name);
bool shader(Assets* assets,
const std::filesystem::path& filename,
const std::string& name);
const std::filesystem::path filename,
const std::string name);
bool atlas(Assets* assets,
const std::filesystem::path& directory,
const std::string& name);
const std::filesystem::path directory,
const std::string name);
bool font(Assets* assets,
const std::filesystem::path& filename,
const std::string& name);
const std::filesystem::path filename,
const std::string name);
}
#endif // ASSETS_ASSET_LOADERS_H_