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
15 lines
388 B
C++
15 lines
388 B
C++
#pragma once
|
|
#include "Tile_SPU.h"
|
|
|
|
|
|
class CauldronTile_SPU : public Tile_SPU
|
|
{
|
|
public:
|
|
CauldronTile_SPU(int id) : Tile_SPU(id) {}
|
|
virtual Icon_SPU *getTexture(int face, int data) { return nullptr; }
|
|
//@Override
|
|
// virtual void updateDefaultShape();
|
|
virtual bool isSolidRender(bool isServerLevel = false) { return false; }
|
|
virtual int getRenderShape() { return SHAPE_CAULDRON; }
|
|
};
|