#pragma once #include #include #include namespace ResourceHelper { bool initializeResourceSystem(const std::string& pack_file = "resources.pack", bool enable_fallback = true); void shutdownResourceSystem(); std::vector loadFile(const std::string& filepath); bool shouldUseResourcePack(const std::string& filepath); std::string getPackPath(const std::string& asset_path); }