LeviLamina
Loading...
Searching...
No Matches
WorldType.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Editor {
6
7enum class WorldType : int {
8 NonEditor = 0,
9 EditorProject = 1,
10 EditorTestLevel = 2,
11 EditorRealmsUpload = 3,
12};
13
14}