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
22 lines
482 B
C++
22 lines
482 B
C++
#pragma once
|
|
#include "Tile.h"
|
|
#include "Material.h"
|
|
|
|
class ChunkRebuildData;
|
|
|
|
class ClothTile : public Tile
|
|
{
|
|
friend class ChunkRebuildData;
|
|
private:
|
|
Icon **icons;
|
|
public:
|
|
ClothTile();
|
|
virtual Icon *getTexture(int face, int data);
|
|
protected:
|
|
virtual int getSpawnResourcesAuxValue(int data);
|
|
public:
|
|
static int getTileDataForItemAuxValue(int auxValue);
|
|
static int getItemAuxValueForTileData(int data);
|
|
//@Override
|
|
void registerIcons(IconRegister *iconRegister);
|
|
}; |