diff options
Diffstat (limited to 'Minecraft.Client/Common/Filesystem/Filesystem.h')
| -rw-r--r-- | Minecraft.Client/Common/Filesystem/Filesystem.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Minecraft.Client/Common/Filesystem/Filesystem.h b/Minecraft.Client/Common/Filesystem/Filesystem.h new file mode 100644 index 00000000..11d1bf5b --- /dev/null +++ b/Minecraft.Client/Common/Filesystem/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); |
