From 8fff93eb7da1b01d101e146ca7fe5d90ca01fcde Mon Sep 17 00:00:00 2001 From: FloppyDiskDrive Date: Thu, 23 Nov 2017 11:20:53 -0600 Subject: extremely rough savesystem --- ShiftOS.Engine/SaveSystem.cs | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 ShiftOS.Engine/SaveSystem.cs (limited to 'ShiftOS.Engine/SaveSystem.cs') 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"; + } + } + } +} -- cgit v1.2.3