aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Engine
diff options
context:
space:
mode:
authorFloppyDiskDrive <[email protected]>2017-11-22 20:06:58 -0600
committerFloppyDiskDrive <[email protected]>2017-11-22 20:06:58 -0600
commitdf647e5024e498905400e89f6762849fe17da03c (patch)
tree478ef8668e691bf1748839f218fbd46195486742 /ShiftOS.Engine
parent9bc7292d3b18fbb7b72a4fdbf020b84d370a2824 (diff)
downloadshiftos-rewind-df647e5024e498905400e89f6762849fe17da03c.tar.gz
shiftos-rewind-df647e5024e498905400e89f6762849fe17da03c.tar.bz2
shiftos-rewind-df647e5024e498905400e89f6762849fe17da03c.zip
yay things again
Diffstat (limited to 'ShiftOS.Engine')
-rw-r--r--ShiftOS.Engine/SaveSystem/SaveSystem.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/ShiftOS.Engine/SaveSystem/SaveSystem.cs b/ShiftOS.Engine/SaveSystem/SaveSystem.cs
new file mode 100644
index 0000000..f9c740c
--- /dev/null
+++ b/ShiftOS.Engine/SaveSystem/SaveSystem.cs
@@ -0,0 +1,20 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.IO;
+
+namespace ShiftOS.Engine.SaveSystem
+{
+ public static class SaveSystem
+ {
+ public static string dataDir
+ {
+ get
+ {
+ return Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "ShiftOS-Rewind");
+ }
+ }
+ }
+}