Heroes_of_Hiis/Assets/Oculus/Platform/Scripts/CloudStorageDataStatus.cs

34 lines
596 B
C#
Raw Normal View History

2022-03-07 15:52:41 +00:00
// This file was @generated with LibOVRPlatform/codegen/main. Do not modify it!
namespace Oculus.Platform
{
using Description = System.ComponentModel.DescriptionAttribute;
public enum CloudStorageDataStatus : int
{
[Description("UNKNOWN")]
Unknown,
[Description("IN_SYNC")]
InSync,
[Description("NEEDS_DOWNLOAD")]
NeedsDownload,
[Description("REMOTE_DOWNLOADING")]
RemoteDownloading,
[Description("NEEDS_UPLOAD")]
NeedsUpload,
[Description("LOCAL_UPLOADING")]
LocalUploading,
[Description("IN_CONFLICT")]
InConflict,
}
}