the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2
3class Facing
4{
5public:
6 static const int DOWN = 0;
7 static const int UP = 1;
8 static const int NORTH = 2;
9 static const int SOUTH = 3;
10 static const int WEST = 4;
11 static const int EAST = 5;
12
13 static const int OPPOSITE_FACING[6];
14 static const int STEP_X[6];
15 static const int STEP_Y[6];
16 static const int STEP_Z[6];
17
18 static const wstring NAMES[];
19};