aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/BrewingStandTile.h
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.World/BrewingStandTile.h')
-rw-r--r--Minecraft.World/BrewingStandTile.h33
1 files changed, 17 insertions, 16 deletions
diff --git a/Minecraft.World/BrewingStandTile.h b/Minecraft.World/BrewingStandTile.h
index fc8ff462..bb1fed99 100644
--- a/Minecraft.World/BrewingStandTile.h
+++ b/Minecraft.World/BrewingStandTile.h
@@ -1,14 +1,12 @@
#pragma once
-#include "EntityTile.h"
+#include "BaseEntityTile.h"
class IconRegister;
class ChunkRebuildData;
-class BrewingStandTile : public EntityTile
+class BrewingStandTile : public BaseEntityTile
{
friend ChunkRebuildData;
-public:
- static const wstring TEXTURE_BASE;
private:
Random *random;
Icon *iconBase;
@@ -16,17 +14,20 @@ private:
public:
BrewingStandTile(int id);
~BrewingStandTile();
- virtual bool isSolidRender(bool isServerLevel = false);
- virtual int getRenderShape();
- virtual shared_ptr<TileEntity> newTileEntity(Level *level);
- virtual bool isCubeShaped();
- virtual void addAABBs(Level *level, int x, int y, int z, AABB *box, AABBList *boxes, shared_ptr<Entity> source);
- virtual void updateDefaultShape();
- virtual bool use(Level *level, int x, int y, int z, shared_ptr<Player> player, int clickedFace, float clickX, float clickY, float clickZ, bool soundOnly = false); // 4J added soundOnly param
- virtual void animateTick(Level *level, int xt, int yt, int zt, Random *random);
- virtual void onRemove(Level *level, int x, int y, int z, int id, int data);
- virtual int getResource(int data, Random *random, int playerBonusLevel);
+ virtual bool isSolidRender(bool isServerLevel = false);
+ virtual int getRenderShape();
+ virtual shared_ptr<TileEntity> newTileEntity(Level *level);
+ virtual bool isCubeShaped();
+ virtual void addAABBs(Level *level, int x, int y, int z, AABB *box, AABBList *boxes, shared_ptr<Entity> source);
+ virtual void updateDefaultShape();
+ virtual bool use(Level *level, int x, int y, int z, shared_ptr<Player> player, int clickedFace, float clickX, float clickY, float clickZ, bool soundOnly = false); // 4J added soundOnly param
+ virtual void setPlacedBy(Level *level, int x, int y, int z, shared_ptr<LivingEntity> by, shared_ptr<ItemInstance> itemInstance);
+ virtual void animateTick(Level *level, int xt, int yt, int zt, Random *random);
+ virtual void onRemove(Level *level, int x, int y, int z, int id, int data);
+ virtual int getResource(int data, Random *random, int playerBonusLevel);
virtual int cloneTileId(Level *level, int x, int y, int z);
- void registerIcons(IconRegister *iconRegister);
- Icon *getBaseTexture();
+ virtual bool hasAnalogOutputSignal();
+ virtual int getAnalogOutputSignal(Level *level, int x, int y, int z, int dir);
+ virtual void registerIcons(IconRegister *iconRegister);
+ virtual Icon *getBaseTexture();
}; \ No newline at end of file