This commit is contained in:
Krzosa Karol
2022-10-09 10:47:38 +02:00
parent fb6c89f845
commit ed7267a8c8

9
os.h Normal file
View File

@@ -0,0 +1,9 @@
const U32 LIST_NO_FLAGS = 0;
const U32 LIST_RECURSE_INTO_DIRS = 1;
struct OS_File_Info{
String relative_path;
String absolute_path;
B32 is_directory;
};