LeviLamina
Loading...
Searching...
No Matches
ContiguousSelectionType.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Editor::BlockUtils {
6
7enum class ContiguousSelectionType : int {
8 SameBlock = 0,
9 BlockStates = 1,
10 SolidBlocks = 2,
11 AllBlocks = 3,
12 Custom = 4,
13};
14
15}