Files
mcpe/source/world/tile/OreTile.cpp
2023-08-10 13:27:30 +03:00

34 lines
738 B
C++

/********************************************************************
Minecraft: Pocket Edition - Decompilation Project
Copyright (C) 2023 iProgramInCpp
The following code is licensed under the BSD 1 clause license.
SPDX-License-Identifier: BSD-1-Clause
********************************************************************/
#include "OreTile.hpp"
#include "world/level/Level.hpp"
OreTile::OreTile(int id, int texture) : Tile(id, texture, Material::stone)
{
}
int OreTile::getResource(int x, Random* random)
{
return m_ID;
}
int OreTile::getResourceCount(Random* random)
{
if (m_ID == Tile::lapisOre->m_ID)
return random->genrand_int32() % 5 + 4;
return 1;
}
int OreTile::getSpawnResourcesAuxValue(int x)
{
return 0;
}