linter: varios

This commit is contained in:
2025-10-24 17:12:57 +02:00
parent 9979f31b4a
commit 636e4d932a
11 changed files with 136 additions and 106 deletions

View File

@@ -19,11 +19,11 @@ class AssetIntegrated : public Asset {
auto fileExists(const std::string& filename) const -> bool;
// Obtiene la ruta completa para archivos del sistema/config
auto getSystemPath(const std::string& filename) const -> std::string;
static auto getSystemPath(const std::string& filename) -> std::string;
private:
static bool resource_pack_enabled;
// Determina si un archivo debe cargarse del pack o del filesystem
auto shouldUseResourcePack(const std::string& filepath) const -> bool;
static auto shouldUseResourcePack(const std::string& filepath) -> bool;
};