summaryrefslogtreecommitdiff
path: root/shiftos_next/filesystem.vb
diff options
context:
space:
mode:
Diffstat (limited to 'shiftos_next/filesystem.vb')
-rw-r--r--shiftos_next/filesystem.vb19
1 files changed, 0 insertions, 19 deletions
diff --git a/shiftos_next/filesystem.vb b/shiftos_next/filesystem.vb
deleted file mode 100644
index 61e8053..0000000
--- a/shiftos_next/filesystem.vb
+++ /dev/null
@@ -1,19 +0,0 @@
-Module filesystem
- 'This module represents the folder structure of the ShiftFS Filesystem.
-
- Public root As String = "C:\ShiftOS"
-
- Public home As String = root + "\Home\" 'Inconsistent to fix terminal glitch.
-
- Public documents As String = home + "Documents\"
- Public pictures As String = home + "Pictures\"
- Public music As String = home + "Music\"
-
- Public systemdir As String = root + "\Shiftum42\"
-
- Public drivers As String = systemdir + "Drivers\"
-
- Public save As String = drivers + "HDD.dri"
-
-
-End Module