mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/LCE-Revelations.git
synced 2026-05-22 17:35:50 +00:00
7 lines
231 B
C
7 lines
231 B
C
#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);
|