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
20 lines
543 B
C++
20 lines
543 B
C++
#pragma once
|
|
using namespace std;
|
|
|
|
#include "TileItem.h"
|
|
|
|
class WoolTileItem : public TileItem
|
|
{
|
|
public:
|
|
static const unsigned int COLOR_DESCS[];
|
|
static const unsigned int CARPET_COLOR_DESCS[];
|
|
static const unsigned int CLAY_COLOR_DESCS[];
|
|
static const unsigned int GLASS_COLOR_DESCS[];
|
|
static const unsigned int GLASS_PANE_COLOR_DESCS[];
|
|
|
|
WoolTileItem(int id);
|
|
|
|
virtual Icon *getIcon(int itemAuxValue);
|
|
virtual int getLevelDataForAuxValue(int auxValue);
|
|
virtual unsigned int getDescriptionId(shared_ptr<ItemInstance> instance);
|
|
}; |