aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/PS3/SPU_Tasks/ChunkUpdate/Facing_SPU.h
blob: 1c4cfdf3b14986c164999a46cbea4b6b9f1568ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

class Facing
{
public:
    static const int DOWN = 0;
    static const int UP = 1;
    static const int NORTH = 2;
    static const int SOUTH = 3;
    static const int WEST = 4;
    static const int EAST = 5;

	static const int OPPOSITE_FACING[6];
	static const int STEP_X[6];
	static const int STEP_Y[6];
	static const int STEP_Z[6];
};