Scriptum/Assets/Scripts/SaveSystem.cs
kabix09 306c2f85c3 Add quest saving manager system for user tasks
Add base auto saving when change scene
2022-06-19 14:47:46 +02:00

16 lines
361 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using System.IO;
public static class SaveSystem
{
public static string GetSavePath(string SubFolder = null)
{
if(SubFolder != null)
return Application.persistentDataPath + "/" + SubFolder;
return Application.persistentDataPath;
}
}