mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-07-19 21:37:09 +00:00
11 lines
407 B
C++
11 lines
407 B
C++
#include "../../../../Header Files/stdafx.h"
|
|
#include "../level/tile/net.minecraft.world.level.tile.h"
|
|
#include "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;
|
|
} |