fixed Mesh wireframe rendering for non-indexed meshes
[vrfileman] / src / fs.h
index d58c621..c6f95a7 100644 (file)
--- a/src/fs.h
+++ b/src/fs.h
@@ -14,7 +14,15 @@ public:
        char *abs_path;
        char *name, *suffix;
 
+       FSNode();
+       ~FSNode();
+
        void set_path(const char *s);
 };
 
+bool init_fs();
+void cleanup_fs();
+
+void draw_fs();
+
 #endif // FS_H_