the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at master 22 lines 290 B view raw
1#include "stdafx.h" 2#include "Facing_SPU.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};