LeviLamina
Loading...
Searching...
No Matches
DownloaderResult.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5enum class DownloaderResult : int {
6 Successful = 0,
7 InvalidDestinationPath = 1,
8 InvalidURI = 2,
9 EmptyHostURI = 3,
10 RequiresXboxLive = 4,
11 RealmsError = 5,
12 FileTooBig = 6,
13 Unknown = 7,
14 Canceled = 8,
15 Count = 9,
16};