LeviLamina
Loading...
Searching...
No Matches
PlaceFeatureResult.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace FeatureHelper {
6
7enum class PlaceFeatureResult : int {
8 Success = 0,
9 FailureInvalidPosition = 1,
10 FailureChunkNotLoaded = 2,
11};
12
13}