34 lines
564 B
C#
34 lines
564 B
C#
// This file was @generated with LibOVRPlatform/codegen/main. Do not modify it!
|
|
|
|
namespace Oculus.Platform
|
|
{
|
|
|
|
using Description = System.ComponentModel.DescriptionAttribute;
|
|
|
|
public enum AppStatus : int
|
|
{
|
|
[Description("UNKNOWN")]
|
|
Unknown,
|
|
|
|
[Description("ENTITLED")]
|
|
Entitled,
|
|
|
|
[Description("DOWNLOAD_QUEUED")]
|
|
DownloadQueued,
|
|
|
|
[Description("DOWNLOADING")]
|
|
Downloading,
|
|
|
|
[Description("INSTALLING")]
|
|
Installing,
|
|
|
|
[Description("INSTALLED")]
|
|
Installed,
|
|
|
|
[Description("UNINSTALLING")]
|
|
Uninstalling,
|
|
|
|
}
|
|
|
|
}
|