aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Engine/SaveSystem.cs
diff options
context:
space:
mode:
authorFloppyDiskDrive <[email protected]>2017-11-23 11:20:53 -0600
committerFloppyDiskDrive <[email protected]>2017-11-23 11:20:53 -0600
commit8fff93eb7da1b01d101e146ca7fe5d90ca01fcde (patch)
treeebb8eafff81f5e54925ec27f1a19b5066f83a418 /ShiftOS.Engine/SaveSystem.cs
parent1febbbd405e6f67401313defb76cc5a41b44c912 (diff)
downloadshiftos-rewind-8fff93eb7da1b01d101e146ca7fe5d90ca01fcde.tar.gz
shiftos-rewind-8fff93eb7da1b01d101e146ca7fe5d90ca01fcde.tar.bz2
shiftos-rewind-8fff93eb7da1b01d101e146ca7fe5d90ca01fcde.zip
extremely rough savesystem
Diffstat (limited to 'ShiftOS.Engine/SaveSystem.cs')
-rw-r--r--ShiftOS.Engine/SaveSystem.cs27
1 files changed, 27 insertions, 0 deletions
diff --git a/ShiftOS.Engine/SaveSystem.cs b/ShiftOS.Engine/SaveSystem.cs
new file mode 100644
index 0000000..59ddf4b
--- /dev/null
+++ b/ShiftOS.Engine/SaveSystem.cs
@@ -0,0 +1,27 @@
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace ShiftOS.Engine
+{
+ public class SaveSystem
+ {
+ public static string gameDir
+ {
+ get
+ {
+ return Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "ShiftOS-Rewind");
+ }
+ }
+ public static string fontDir
+ {
+ get
+ {
+ return gameDir + "\\Fonts";
+ }
+ }
+ }
+}