Some work-in-progress in hp and mobs and a frightening amount of random fixes.
[oweals/minetest.git] / src / filesys.h
index 6dbc426a5494454a075047300808e77071eb86b7..4dd90b84e29618a5126d0f9396768d361034ed1b 100644 (file)
@@ -40,6 +40,13 @@ bool CreateDir(std::string path);
 
 bool PathExists(std::string path);
 
+// Only pass full paths to this one. True on success.
+// NOTE: The WIN32 version returns always true.
+bool RecursiveDelete(std::string path);
+
+// Only pass full paths to this one. True on success.
+bool RecursiveDeleteContent(std::string path);
+
 }//fs
 
 #endif