Serialization work

This commit is contained in:
Antoine Pilote
2021-05-15 23:57:26 -04:00
parent b53d2e729e
commit 5f364dabb2
27 changed files with 368 additions and 305 deletions

View File

@@ -37,7 +37,12 @@ public:
static Ref<Directory> RootDirectory;
static void Scan();
static Ref<Directory> GetFileTree();
static void ScanDirectory(Ref<Directory> directory);
static void GetDirectories();
static Ref<Directory> GetFileTree();
static bool DirectoryExists(const std::string path);
static bool FileExists(const std::string path);
};