ShiftOS-Rewind/ShiftOS.Engine/SaveSystem.cs

28 lines
577 B
C#
Raw Normal View History

2017-11-23 17:20:53 +00:00
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";
}
}
}
}