LeviLamina
Loading...
Searching...
No Matches
DownloadWorldTemplateError.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace World {
6
7enum class DownloadWorldTemplateError : uint {
8 AlreadyDownloaded = 0,
9 DownloadAlreadyInProgress = 1,
10 DownloadFailed = 2,
11 ItemNotOwned = 3,
12 CancelledByUser = 4,
13 InsufficientStorage = 5,
14};
15
16}