mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 07:23:41 +00:00
15 lines
447 B
C++
15 lines
447 B
C++
#include "../Platform/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; } |