forked from cgvr/DeltaVR
		
	
		
			
				
	
	
		
			34 lines
		
	
	
		
			596 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			596 B
		
	
	
	
		
			C#
		
	
	
	
	
	
// 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,
 | 
						|
 | 
						|
  }
 | 
						|
 | 
						|
}
 |