mirror of
https://github.com/celisej567/mcpe.git
synced 2026-09-11 20:11:18 +03:00
17 lines
274 B
C++
17 lines
274 B
C++
#include "Tile.hpp"
|
|
#include "Level.hpp"
|
|
|
|
ObsidianTile::ObsidianTile(int a, int b, Material* c) : Tile(a, b, c)
|
|
{
|
|
}
|
|
|
|
int ObsidianTile::getResource(int data, Random* random)
|
|
{
|
|
return Tile::obsidian->m_ID;
|
|
}
|
|
|
|
int ObsidianTile::getResourceCount(Random* random)
|
|
{
|
|
return 1;
|
|
}
|