Files
Fireblade 950de854a1 feat: barrier block
todo: deprecate *.col file usage
2026-04-29 16:35:14 -04:00

31 lines
456 B
C++

#include "stdafx.h"
#include "BarrierTile.h"
BarrierTile::BarrierTile(int id, Material *material, bool allowSame) : HalfTransparentTile(id, L"barrier", material, allowSame)
{
}
int BarrierTile::getResourceCount(Random *random)
{
return 0;
}
int BarrierTile::getRenderLayer()
{
return 0;
}
bool BarrierTile::isSolidRender()
{
return false;
}
bool BarrierTile::isCubeShaped()
{
return false;
}
bool BarrierTile::isSilkTouchable()
{
return false;
}