mirror of
https://github.com/DrPerkyLegit/LCEServerTest.git
synced 2026-06-06 19:04:32 +00:00
removed git history
This commit is contained in:
24
Minecraft.World/Facing.cpp
Normal file
24
Minecraft.World/Facing.cpp
Normal file
@@ -0,0 +1,24 @@
|
||||
#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"};
|
||||
Reference in New Issue
Block a user