mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-06-10 23:54:17 +00:00
chore: format Minecraft.World
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user