mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-27 03:03:39 +00:00
11 lines
411 B
C++
11 lines
411 B
C++
#include "../../Platform/stdafx.h"
|
|
#include "../../Headers/net.minecraft.world.level.tile.h"
|
|
#include "../../Headers/net.minecraft.world.item.h"
|
|
#include "PistonTileItem.h"
|
|
|
|
PistonTileItem::PistonTileItem(int id) : TileItem(id) {}
|
|
|
|
int PistonTileItem::getLevelDataForAuxValue(int auxValue) {
|
|
// return an undefined facing until the setPlacedBy method is called
|
|
return PistonBaseTile::UNDEFINED_FACING;
|
|
} |