Files
2025-07-21 09:11:14 +02:00

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,
}
}