chore: format Minecraft.World

This commit is contained in:
Tropical
2026-03-13 17:06:56 -05:00
parent bd6284025d
commit 33d0737d1d
1511 changed files with 108661 additions and 115521 deletions

View File

@@ -4,29 +4,27 @@
#include "TileEntity.h"
#include "EntityTile.h"
EntityTile::EntityTile(int id, Material *material, bool isSolidRender /*= true*/) : Tile(id, material, isSolidRender)
{
_isEntityTile = true;
EntityTile::EntityTile(int id, Material* material,
bool isSolidRender /*= true*/)
: Tile(id, material, isSolidRender) {
_isEntityTile = true;
}
void EntityTile::onPlace(Level *level, int x, int y, int z)
{
void EntityTile::onPlace(Level* level, int x, int y, int z) {
Tile::onPlace(level, x, y, z);
level->setTileEntity(x, y, z, newTileEntity(level));
}
void EntityTile::onRemove(Level *level, int x, int y, int z, int id, int data)
{
void EntityTile::onRemove(Level* level, int x, int y, int z, int id, int data) {
Tile::onRemove(level, x, y, z, id, data);
level->removeTileEntity(x, y, z);
}
void EntityTile::triggerEvent(Level *level, int x, int y, int z, int b0, int b1)
{
Tile::triggerEvent(level, x, y, z, b0, b1);
std::shared_ptr<TileEntity> te = level->getTileEntity(x, y, z);
if (te != NULL)
{
te->triggerEvent(b0, b1);
}
void EntityTile::triggerEvent(Level* level, int x, int y, int z, int b0,
int b1) {
Tile::triggerEvent(level, x, y, z, b0, b1);
std::shared_ptr<TileEntity> te = level->getTileEntity(x, y, z);
if (te != NULL) {
te->triggerEvent(b0, b1);
}
}