LeviLamina
Loading...
Searching...
No Matches
FacingResult.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace RotationCommandUtils {
6
7enum class FacingResult : int {
8 HaveFacing = 0,
9 NoFacing = 1,
10 Error = 2,
11};
12
13}