LeviLamina
Loading...
Searching...
No Matches
Rotation.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Facing {
6
7enum class Rotation : int {
8 None = 0,
9 Ccw = 1,
10 Opp = 2,
11 Cw = 3,
12 Count = 4,
13};
14
15}