From 38ce933fd5ec05673cbefae63f2bae74a1e0d53c Mon Sep 17 00:00:00 2001 From: GuglioIsStupid Date: Sat, 7 Mar 2026 06:36:05 -0500 Subject: voids request - Move the filesystem files to root/ as it will be used in both Minecraft.Client and Minecraft.World (#819) * Move Filesystem to root/include/ as per devoiders request * Filesystem -> lce_filesystem --- include/lce_filesystem/lce_filesystem.h | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 include/lce_filesystem/lce_filesystem.h (limited to 'include/lce_filesystem/lce_filesystem.h') diff --git a/include/lce_filesystem/lce_filesystem.h b/include/lce_filesystem/lce_filesystem.h new file mode 100644 index 00000000..11d1bf5b --- /dev/null +++ b/include/lce_filesystem/lce_filesystem.h @@ -0,0 +1,6 @@ +#pragma once + +bool FileOrDirectoryExists(const char* path); +bool FileExists(const char* path); +bool DirectoryExists(const char* path); +bool GetFirstFileInDirectory(const char* directory, char* outFilePath, size_t outFilePathSize); -- cgit v1.2.3