Files
GabsPuNs-Project_Zenith_Main/Minecraft.World/Facing.cpp
GabsPuNs bc6c09146a New File System and Cleanup some code Part 3
* Remove stdafx.h and some <unordered_set> includes
* Update Minecraft Server Defines and remove more unused folders/files
* Unbloat stdafx.h from Minecraft.World
2026-05-24 22:21:41 -04:00

23 lines
354 B
C++

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