15 lines
268 B
C#
15 lines
268 B
C#
namespace Oculus.Platform
|
|
{
|
|
public static class CloudStorage2
|
|
{
|
|
public static Request<string> GetUserDirectoryPath()
|
|
{
|
|
if (Core.IsInitialized())
|
|
{
|
|
return new Request<string>(CAPI.ovr_CloudStorage2_GetUserDirectoryPath());
|
|
}
|
|
return null;
|
|
}
|
|
}
|
|
}
|