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
This commit is contained in:
GuglioIsStupid
2026-03-07 18:36:05 +07:00
committed by GitHub
parent e754bad17e
commit 38ce933fd5
7 changed files with 18 additions and 14 deletions
+6
View File
@@ -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);