mirror of
https://github.com/celisej567/mcpe.git
synced 2026-01-04 14:09:47 +03:00
github.dev removing files randomly lmfao
This commit is contained in:
24
source/world/tile/ClayTile.cpp
Normal file
24
source/world/tile/ClayTile.cpp
Normal file
@@ -0,0 +1,24 @@
|
||||
/********************************************************************
|
||||
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 "Tile.hpp"
|
||||
#include "Level.hpp"
|
||||
|
||||
ClayTile::ClayTile(int a, int b, Material* c) : Tile(a, b, c)
|
||||
{
|
||||
}
|
||||
|
||||
int ClayTile::getResource(int, Random* random)
|
||||
{
|
||||
return 0; //@NOTE: Would be clay's item ID
|
||||
}
|
||||
|
||||
int ClayTile::getResourceCount(Random* random)
|
||||
{
|
||||
return 4;
|
||||
}
|
||||
Reference in New Issue
Block a user