LeviLamina
Loading...
Searching...
No Matches
FeatureVersion.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace FeatureLoading {
6
7enum class FeatureVersion : int {
8 OnlyTests = 0,
9 Invalid = 1,
10 InitialRelease = 2,
11 ScatterFeatureUpdate = 3,
12 SingleBlockFeatureUpdate = 4,
13};
14
15}