mirror of
https://github.com/celisej567/mcpe.git
synced 2026-09-11 20:11:18 +03:00
12 lines
181 B
C++
12 lines
181 B
C++
#include "Tile.hpp"
|
|
#include "Level.hpp"
|
|
|
|
GravelTile::GravelTile(int a, int b, Material* c) : SandTile(a, b, c)
|
|
{
|
|
}
|
|
|
|
int GravelTile::getResource(int a, Random* b)
|
|
{
|
|
return m_ID;
|
|
}
|