Refactored lib and module namespaces

This commit is contained in:
acidicoala
2025-10-05 07:31:05 +05:00
parent 0c6c8e02b6
commit 5aa9ffef85
8 changed files with 15 additions and 12 deletions

View File

@@ -8,7 +8,7 @@
#include <koalabox/logger.hpp>
#include <koalabox/path.hpp>
#include <koalabox/str.hpp>
#include <koalabox/zip.hpp>
#include <koalabox_tools/zip.hpp>
namespace {
namespace fs = std::filesystem;
@@ -90,7 +90,7 @@ namespace {
}
void unzip_sdk(const fs::path& zip_file_path, const fs::path& unzip_dir) {
kb::zip::extract_files(
kb::tools::zip::extract_files(
zip_file_path,
[&](const std::string& name, const bool) {
if(name.starts_with("sdk/public/steam/") && name.ends_with(".h")) {