LeviLamina
Loading...
Searching...
No Matches
DownloadState.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5enum class DownloadState : int {
6 Uninitialized = 0,
7 Initializing = 1,
8 Progress = 2,
9 Importing = 3,
10 Done = 4,
11 ErrorOccurred = 5,
12 Failed = 6,
13};