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
31 lines
437 B
C++
31 lines
437 B
C++
#include "stdafx.h"
|
|
#include "GlassTile.h"
|
|
|
|
GlassTile::GlassTile(int id, Material *material, bool allowSame) : HalfTransparentTile(id, L"glass", material, allowSame)
|
|
{
|
|
}
|
|
|
|
int GlassTile::getResourceCount(Random *random)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int GlassTile::getRenderLayer()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
bool GlassTile::isSolidRender()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool GlassTile::isCubeShaped()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool GlassTile::isSilkTouchable()
|
|
{
|
|
return true;
|
|
} |