2022-06-17 22:22:19 +02:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
|
|
|
using System.IO;
|
|
|
|
|
|
|
|
public static class SaveSystem
|
|
|
|
{
|
2022-06-19 02:56:04 +02:00
|
|
|
public static string GetSavePath(string SubFolder = null)
|
2022-06-17 22:22:19 +02:00
|
|
|
{
|
2022-06-19 02:56:04 +02:00
|
|
|
if(SubFolder != null)
|
|
|
|
return Application.persistentDataPath + "/" + SubFolder;
|
|
|
|
|
|
|
|
return Application.persistentDataPath;
|
2022-06-17 22:22:19 +02:00
|
|
|
}
|
|
|
|
}
|