LeviLamina
Loading...
Searching...
No Matches
ExportResult.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Editor {
6
7enum class ExportResult : int {
8 ValidWorldExport = 0,
9 LevelFetchFailed = 1,
10 FileArchiverFetchFailed = 2,
11 ProjectConverterFetchFailed = 3,
12 PlayerNotFound = 4,
13 WorldExportFailed = 5,
14 WorldExportBusy = 6,
15 EditorSystemFailure = 7,
16};
17
18}