This repository has been archived on 2026-05-14. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
MinecraftConsoles/Minecraft.Client/PS3/SPU_Tasks/ChunkUpdate/Facing_SPU.cpp
2026-03-01 12:16:08 +08:00

23 lines
290 B
C++

#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
};