mirror of
https://github.com/ShiftOS-Rewind/ShiftOS.git
synced 2025-01-22 17:52:15 +00:00
28 lines
577 B
C#
28 lines
577 B
C#
|
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";
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|