Files
simian/tests/physfs_test_utils.h
nick 3e23f7da8e
CI / build-and-test (push) Failing after 10m16s
CI / build-and-test (pull_request) Successful in 3m2s
feat: added physFS
2026-03-11 16:43:36 +13:00

10 lines
297 B
C++

#pragma once
#include <filesystem>
#include <string>
bool InitPhysFSTest(const std::filesystem::path& writeDir);
bool MountPhysFSTest(const std::filesystem::path& realPath, const std::string& mountPoint);
bool UnmountPhysFSTest(const std::filesystem::path& realPath);
void ShutdownPhysFSTest();