mirror of
https://github.com/celisej567/mcpe.git
synced 2026-09-11 20:11:18 +03:00
11 lines
189 B
C++
11 lines
189 B
C++
#include "Tile.hpp"
|
|
#include "Level.hpp"
|
|
|
|
GlassTile::GlassTile(int a, int b, Material* c) : HalfTransparentTile(a, b, c)
|
|
{
|
|
}
|
|
|
|
int GlassTile::getResourceCount(Random* pRandom)
|
|
{
|
|
return 0;
|
|
} |