summaryrefslogblamecommitdiffstats
path: root/source/blocks/BlockRedstoneTorch.h
blob: 88e884861adaf4a88b77c2a7e754b3702c46cef6 (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;
	}
};