Add Discord RPC back with new features, add beta splitscreen support, PR's from MCLCE used in this https://github.com/MCLCE/MinecraftConsoles/pull/1044 https://github.com/MCLCE/MinecraftConsoles/pull/1136 https://github.com/MCLCE/MinecraftConsoles/pull/1245
24 lines
374 B
C++
24 lines
374 B
C++
#include "stdafx.h"
|
|
#include "Facing.h"
|
|
|
|
const int Facing::OPPOSITE_FACING[6] =
|
|
{
|
|
UP, DOWN, SOUTH, NORTH, EAST, WEST
|
|
};
|
|
|
|
const int Facing::STEP_X[6] =
|
|
{
|
|
0, 0, 0, 0, -1, 1
|
|
};
|
|
|
|
const int Facing::STEP_Y[6] =
|
|
{
|
|
-1, 1, 0, 0, 0, 0
|
|
};
|
|
|
|
const int Facing::STEP_Z[6] =
|
|
{
|
|
0, 0, -1, 1, 0, 0
|
|
};
|
|
|
|
const wstring Facing::NAMES[] = {L"DOWN", L"UP", L"NORTH", L"SOUTH", L"WEST", L"EAST"}; |