39 lines
449 B
C#
39 lines
449 B
C#
namespace Oculus.Platform
|
|
{
|
|
public sealed class StandalonePlatformSettings
|
|
{
|
|
public static string OculusPlatformTestUserEmail
|
|
{
|
|
get
|
|
{
|
|
return string.Empty;
|
|
}
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
public static string OculusPlatformTestUserPassword
|
|
{
|
|
get
|
|
{
|
|
return string.Empty;
|
|
}
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
public static string OculusPlatformTestUserAccessToken
|
|
{
|
|
get
|
|
{
|
|
return string.Empty;
|
|
}
|
|
set
|
|
{
|
|
}
|
|
}
|
|
}
|
|
}
|