Example #1
0
 internal AndroidAssetPackInfo(string name, AndroidAssetPackStatus status, ulong size, ulong bytesDownloaded, float transferProgress, AndroidAssetPackError error)
 {
     this.name             = name;
     this.status           = status;
     this.size             = size;
     this.bytesDownloaded  = bytesDownloaded;
     this.transferProgress = transferProgress;
     this.error            = error;
 }
Example #2
0
 internal AndroidAssetPackState(string name, AndroidAssetPackStatus status, AndroidAssetPackError error)
 {
     this.name   = name;
     this.status = status;
     this.error  = error;
 }