BITKit/Packages/Runtime~/Unity/Scripts/Storage/PersistentStorage.cs

16 lines
401 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using System.IO;
namespace BITKit.IO
{
[System.Serializable]
public class PersistentStorage : LocalStorageProvider
{
string dataPath => Utility.Path.persistentDataPath;
protected override string GetAdress(string path)
{
return Path.Combine(dataPath, path);
}
}
}