summaryrefslogblamecommitdiffstats
path: root/src/Blocks/BlockTripwire.h
blob: eac586847937ee5831e8f7b578ccc57f2fa6987c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                                    
                                                                                              



                                                                
                                                            







                          

#pragma once

#include "BlockHandler.h"





class cBlockTripwireHandler :
	public cBlockHandler
{
public:
	cBlockTripwireHandler(BLOCKTYPE a_BlockType)
		: cBlockHandler(a_BlockType)
	{
	}

	virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta) /*override*/
	{
		a_Pickups.push_back(cItem(E_ITEM_STRING, 1, 0));
	}

	virtual const char * GetStepSound(void) /*override*/
	{
		return "";
	}
};