the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#include "stdafx.h"
2#include "Facing.h"
3
4const int Facing::OPPOSITE_FACING[6] =
5{
6 UP, DOWN, SOUTH, NORTH, EAST, WEST
7};
8
9const int Facing::STEP_X[6] =
10{
11 0, 0, 0, 0, -1, 1
12};
13
14const int Facing::STEP_Y[6] =
15{
16 -1, 1, 0, 0, 0, 0
17};
18
19const int Facing::STEP_Z[6] =
20{
21 0, 0, -1, 1, 0, 0
22};
23
24const wstring Facing::NAMES[] = {L"DOWN", L"UP", L"NORTH", L"SOUTH", L"WEST", L"EAST"};