From 4df23d19b7be2f274974e3dfe91e716e6296f11c Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Sat, 29 Sep 2012 13:59:32 +0000 Subject: Unified folder name-casing git-svn-id: http://mc-server.googlecode.com/svn/trunk@902 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/blocks/BlockStems.h | 46 ---------------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 source/blocks/BlockStems.h (limited to 'source/blocks/BlockStems.h') diff --git a/source/blocks/BlockStems.h b/source/blocks/BlockStems.h deleted file mode 100644 index be4519a52..000000000 --- a/source/blocks/BlockStems.h +++ /dev/null @@ -1,46 +0,0 @@ -#pragma once -#include "BlockHandler.h" -#include "../MersenneTwister.h" -#include "../World.h" - -class cBlockStemsHandler : public cBlockHandler -{ -public: - cBlockStemsHandler(BLOCKTYPE a_BlockID) - : cBlockHandler(a_BlockID) - { - } - - virtual bool NeedsRandomTicks() override - { - return true; - } - - virtual NIBBLETYPE GetDropMeta(NIBBLETYPE a_BlockMeta) override - { - return 0; - } - - virtual int GetDropID() override - { - if(m_BlockID == E_BLOCK_MELON_STEM) - return E_ITEM_MELON_SEEDS; - return E_ITEM_PUMPKIN_SEEDS; - } - - void OnUpdate(cWorld *a_World, int a_X, int a_Y, int a_Z) override - { - //TODO: Handle Growing here - } - - virtual bool CanBeAt(cWorld *a_World, int a_X, int a_Y, int a_Z) override - { - return a_World->GetBlock(a_X, a_Y - 1, a_Z) == E_BLOCK_FARMLAND; - } - - virtual AString GetStepSound(void) override - { - return "step.wood"; - } - -}; -- cgit v1.2.3