clean project

This commit is contained in:
Helar Jaadla
2022-03-07 17:52:41 +02:00
parent a174b45bd2
commit cbeb10ec35
5100 changed files with 837159 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
// 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,
}
}