10 lines
223 B
C#
10 lines
223 B
C#
|
using UnityEngine;
|
|||
|
|
|||
|
namespace LeanCloud.Storage.Internal.Storage {
|
|||
|
public class UnityStorage : IStorage {
|
|||
|
public string GetStoragePath() {
|
|||
|
return Application.persistentDataPath;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|