diff options
Diffstat (limited to 'ShiftOS.Engine/SaveSystem.cs')
| -rw-r--r-- | ShiftOS.Engine/SaveSystem.cs | 27 |
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"; + } + } + } +} |
