Add Discord RPC back with new features, add beta splitscreen support, PR's from MCLCE used in this https://github.com/MCLCE/MinecraftConsoles/pull/1044 https://github.com/MCLCE/MinecraftConsoles/pull/1136 https://github.com/MCLCE/MinecraftConsoles/pull/1245
16 lines
288 B
C++
16 lines
288 B
C++
#pragma once
|
|
|
|
#include "Tile.h"
|
|
|
|
class DirectionalTile : public Tile
|
|
{
|
|
public:
|
|
static const int DIRECTION_MASK = 0x3;
|
|
static const int DIRECTION_INV_MASK = 0xC;
|
|
|
|
protected:
|
|
DirectionalTile(int id, Material *material, bool isSolidRender);
|
|
|
|
public:
|
|
static int getDirection(int data);
|
|
}; |