This repository has been archived on 2026-05-14. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
MinecraftConsoles/Minecraft.Client/PS3/SPU_Tasks/ChunkUpdate/PistonMovingPiece_SPU.h
2026-03-01 12:16:08 +08:00

17 lines
499 B
C++

#pragma once
#include "EntityTile_SPU.h"
class PistonMovingPiece_SPU : public EntityTile_SPU
{
public:
PistonMovingPiece_SPU(int id) : EntityTile_SPU(id) {}
virtual int getRenderShape() { return SHAPE_INVISIBLE; }
virtual bool isSolidRender(bool isServerLevel = false) { return false; }
virtual void updateShape(LevelSource *level, int x, int y, int z, int forceData = -1, TileEntity* forceEntity = NULL) // 4J added forceData, forceEntity param
{
// should never get here.
}
};