aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/PS3/SPU_Tasks/ChunkUpdate/Facing_SPU.cpp
blob: 074216449e9483e6b5e5df8b3e2b02e532e02e99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include "stdafx.h"
#include "Facing_SPU.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
};