summaryrefslogblamecommitdiffstats
path: root/source/blocks/BlockRedstoneTorch.h
blob: 42d3a0366aa97b6c93d3243ef1e65d98ef7ae7b1 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
 

                           
                        


                       


 
                                                             


                                                        
                                                


          
                                             


                                                 





                                                    

#pragma once
#include "BlockRedstone.h"
#include "BlockTorch.h"
#include "../cTorch.h"





class cBlockRedstoneTorchHandler : public cBlockTorchHandler
{
public:
	cBlockRedstoneTorchHandler(BLOCKTYPE a_BlockID)
		: cBlockTorchHandler(a_BlockID)
	{
	}

	virtual int GetDropID(void) override
	{
		return E_ITEM_REDSTONE_TORCH_ON;
	}

	virtual AString GetStepSound(void) override
	{
		return "step.wood";
	}
};