rnd-20040814-1-src
[rocksndiamonds.git] / src / libem / file.h
diff --git a/src/libem/file.h b/src/libem/file.h
new file mode 100644 (file)
index 0000000..678bbb4
--- /dev/null
@@ -0,0 +1,17 @@
+#ifndef FILE_H
+#define FILE_H
+
+/* 2000-09-28T09:07:50Z
+ */
+
+#include "global.h"
+
+struct cave_node {
+       struct cave_node *next;
+       char path[MAXNAME+2];
+       char name[32];
+};
+
+extern struct cave_node *cave_list;
+
+#endif