LeviLamina
Loading...
Searching...
No Matches
PotentialPositionIndex.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // PotentialPositionIndex inner types define
8 enum class Names : uchar {
9 Down = 0,
10 Up = 1,
11 North = 2,
12 South = 3,
13 West = 4,
14 East = 5,
15 NorthWest = 6,
16 WestSouth = 7,
17 SouthEast = 8,
18 EastNorth = 9,
19 UpNorth = 10,
20 UpWest = 11,
21 UpSouth = 12,
22 UpEast = 13,
23 DownNorth = 14,
24 DownWest = 15,
25 DownSouth = 16,
26 DownEast = 17,
27 MaxIndex = 18,
28 DiagonalEnd = 18,
29 FacingStart = 0,
30 HorizontalFacingStart = 2,
31 DiagonalStart = 6,
32 HorizontalDiagonalStart = 6,
33 VerticalDiagonalStart = 10,
34 HorizontalDiagonalEnd = 10,
35 FacingEnd = 6,
36 };
37};
Definition PotentialPositionIndex.h:5